關於C# 5.0 CallerMemberName CallerFilePath CallerLineNumber 在.NET4中的使用介紹方法

來源:互聯網
上載者:User

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項目時用以上特性。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.