MethodInfo

MethodInfoは、メソッド情報を持つ。

MethodInfo Class (System.Reflection) | Microsoft Docs

取得したメソッド情報の一部を出力してみる。

空のプロジェクト
空のプロジェクト

空のプロジェクト。

MainClass.cs
MainClass.cs

MainClass.cs。

publicなのか、staticなのか、メソッド名、戻り値型などを出力。

DLLを置く
DLLを置く

DLLを置く。

Releaseにも
Releaseにも

Releaseにも。

asm = ClassLibrary, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
type = BGST.ClassLibraryClass
obj = BGST.ClassLibraryClass
getString = System.String GetString()
getString.IsPublic = True
getString.IsStatic = False
getString.Name = GetString
getString.ReturnType = System.String
続行するには何かキーを押してください . . .

publicではあるが、staticではない、GetStringというメソッド名で、戻り値はSystem.String。

Sample/dotnet/MethodInfo/MethodInfo/src/MethodInfo_ at master · bg1bgst333/Sample · GitHub