程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> 關於C# 5.0 CallerMemberName CallerFilePath CallerLineNumber 在.NET4中的使用介紹方法

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

編輯:C#基礎知識

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved