我有一個類,如下所示:使用的System.Reflection獲取一個方法的全名
public class MyClass
{
...
protected void MyMethod()
{
...
string myName = System.Reflection.MethodBase.GetCurrentMethod.Name;
...
}
...
}
的myName
值爲「的MyMethod」。
有沒有一種方法可以使用Reflection來取代myName
的「MyClass.MyMethod」值?
更正:應該System.Reflection.MethodBase.GetCurrentMethod()名稱 – aads 2013-09-26 06:33:05