111,093
社区成员




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;
}