C# 5.0 給我們帶來了三個非常有用的編譯器特性
CallerMemberName
CallerFilePath
CallerLineNumber
在C與C++中由下列字元協助我們實現調試訊息的檔案行號
複製代碼 代碼如下:.#define debug_msg printf("%s[%d]:",__FILE__,__LINE__);printf
在.NET 4中與其功能相等的是
複製代碼 代碼如下:new StackTrace(true).GetFrame(1).GetMethod().Name(注意,是功能相等,但實現不同,.NET4中是運行時擷取,而C#5.0 中應該是編譯時間指定,原因參考以下)
在C#5.0中我們可以用以下代碼實現調試資訊檔行號擷取:
複製代碼 代碼如下:public static void TraceMessage(string message,
[CallerMemberName] string memberName = "",
[CallerFilePath] string sourceFilePath = "",
[CallerLineNumber] int sourceLineNumber = 0)
{
Trace.WriteLine("message: " + message);
Trace.WriteLine("member name: " + memberName);
Trace.WriteLine("source file path: " + sourceFilePath);
Trace.WriteLine("source line number: " + sourceLineNumber);
}
用VS2012編譯調試,便能看見檔案,行號,調用者方法名稱。
三個特性是.NET 4.5裡面的,如果在.NET4中使用那麼請定義一下特性:
複製代碼 代碼如下:namespace System.Runtime.CompilerServices
{
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
public class CallerMemberNameAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
public class CallerFilePathAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
public class CallerLineNumberAttribute : Attribute { }
}
為了編譯時間.NET4和.NET4.5相容,可以用預先處理指令增加編譯條件,在4.5下編譯以上代碼。
關鍵點來了,在.NET4下定義以上屬性後,用VS2010編譯,無相關資訊輸出,
用VS2012重新編譯,則會輸出相關資訊(注意實在.NET4下),說明這個特性是編譯器特性。也就是說我們可以在VS2012裡寫.NET4項目時用以上特性。