StackTrace and StackFrame : StackTrace « Development « C# / CSharp Tutorial






using System;
using System.Runtime.InteropServices;
using System.Diagnostics;

public sealed class MainClass
{
    static void Main()
    {
        StackTrace creationStackTrace = new StackTrace(1, true);
        for( int i = 0;i < creationStackTrace.FrameCount; ++i ) {
             StackFrame frame =  creationStackTrace.GetFrame(i);
             Console.WriteLine( "   {0}", frame.ToString() );
        }    
    }
}
US format: (1.12346 1.12346)
DE format: (1,12346 1,12346)
Object.ToString(): (1.12345678 1.12345678)








14.25.StackTrace
14.25.1.StackTrace and StackFrame
14.25.2.Stack frames