在.NET中怎樣取得程式碼數

來源:互聯網
上載者:User

標籤:show   UI   form   extract   mem   bdd   string   static   err   

文章目的

介紹在.NET中取得程式碼數的方法

代碼

[STAThread]static void Main(string[] args){     ReportError("Yay!");}static private void ReportError(string Message){     StackFrame CallStack = new StackFrame(1, true);     Console.Write("Error: " + Message + ", File: " + CallStack.GetFileName() + ", Line: " + CallStack.GetFileLineNumber());}

StackFrame(Int32, Boolean) 初始化與當前堆疊框架之上的幀相應的 StackFrame 類的新執行個體,能夠選擇捕獲源資訊。

GetFileName  :擷取包括所運行代碼的檔案名稱。 該資訊通常從可運行檔案的偵錯符號中提取。

 

GetMethod  :擷取在當中運行幀的方法。

GetFileLineNumber  :擷取檔案裡包括所運行代碼的行號。 該資訊通常從可運行檔案的偵錯符號中提取。


利用Exception(例外)的StackTrace類

try{    throw new Exception();}catch (Exception ex){    // Get stack trace for the exception with source file information    var st = new StackTrace(ex, true);    // Get the top stack frame    var frame = st.GetFrame(0);    // Get the line number from the stack frame    var line = frame.GetFileLineNumber();}

.NET4.5 新方法

static void SomeMethodSomewhere(){    ShowMessage("Boo");}...static void ShowMessage(string message,    [CallerLineNumber] int lineNumber = 0,    [CallerMemberName] string caller = null){     MessageBox.Show(message + " at line " + lineNumber + " (" + caller + ")");}


在.NET中怎樣取得程式碼數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.