需要添加相應的命名空間:
復制代碼 代碼如下:
using System;
using System.Diagnostics;
using System.Reflection;
如果僅是獲取當前方法名,可以使用如下代碼:
復制代碼 代碼如下:
public static void WriteSysLog(int level, string content)
{
MethodBase mb = MethodBase.GetCurrentMethod();
string systemModule = Environment.NewLine;
systemModule += "模塊名:" + mb.Module.ToString() + Environment.NewLine;
systemModule += "命名空間名:" + mb.ReflectedType.Namespace + Environment.NewLine;
//完全限定名,包括命名空間
systemModule += "類名:" + mb.ReflectedType.FullName + Environment.NewLine;
systemModule += "方法名:" + mb.Name;
Console.WriteLine("LogDate: {0}{1}Level: {2}{1}systemModule: {3}{1}content: {4}", DateTime.Now, Environment.NewLine, level, systemModule, content);
Console.WriteLine();
}
但一般情況下是獲取此記錄日志方法的調用方,因此需要使用下面的代碼:(此方法僅為演示)
代碼如下:
public static void WriteSysLog(string content)
{
const int level = 1000;
StackTrace ss = new StackTrace(true);
//index:0為本身的方法;1為調用方法;2為其上上層,依次類推
MethodBase mb = ss.GetFrame(1).GetMethod();
StackFrame[] sfs = ss.GetFrames();
string systemModule = Environment.NewLine;
systemModule += "模塊名:" + mb.Module.ToString() + Environment.NewLine;
systemModule += "命名空間名:" + mb.DeclaringType.Namespace + Environment.NewLine;
//僅有類名
systemModule += "類名:" + mb.DeclaringType.Name + Environment.NewLine;
systemModule += "方法名:" + mb.Name;
Console.WriteLine("LogDate: {0}{1}Level: {2}{1}systemModule: {3}{1}content: {4}", DateTime.Now, Environment.NewLine, level, systemModule, content);
Console.WriteLine();
}
對於這一點兒,感覺有意思的是Main的調用方
代碼如下:
System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
通過
代碼如下:
StackTrace ss = new StackTrace(true);
StackFrame[] sfs = ss.GetFrames();
可以得知.NET程序的執行順序:
代碼如下:
System.Threading.ThreadHelper.ThreadStart()
System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
然後進入方法Main中。
另外,從 MethodBase 類 還可以獲取很多其他屬性,可以自行定位到System.Reflection.MethodBase 查看。
使用反射可以遍歷獲得類的所有屬性名,方法名,成員名,其中一個有趣的小例子:通過反射將變量值轉為變量名本身。