111,119
社区成员
发帖
与我相关
我的任务
分享 public string GetFullFunName()
{
MethodBase mb = new System.Diagnostics.StackTrace().GetFrame(1).GetMethod();
string name = mb.Name;
string[] full = mb.DeclaringType.FullName.Split('.');
return full[full.Length-1] + "." + name;
} public string GetFullFunName()
{
MethodBase mb = new System.Diagnostics.StackTrace().GetFrame(1).GetMethod();
string name = mb.Name;
string[] full = mb.DeclaringType.FullName.Split('.');
return full[full.Length-1] + "." + name;
}