1. ホーム
  2. .net

現在のメソッドの名前を取得する

2023-09-25 11:38:22

質問

くだらない質問なのですが、現在実行中のメソッド名をそのメソッド内から取得することは可能でしょうか?

Public Sub SomeMethod()

   Dim methodName as String = System.Reflection.[function to get the current method name here?]

End Sub

ありがとうございます。

どのように解決するのですか?

System.Reflection.MethodInfo.GetCurrentMethod();