Firoz
Firoz

Reputation: 7454

Best practice for crash reporting in C# my application

I need to implement crash reporting framework on my C#(WPF) application, so i need full call stack,What would you guys suggest for doing this.

Upvotes: 2

Views: 810

Answers (1)

Arsen Mkrtchyan
Arsen Mkrtchyan

Reputation: 50712

StackTrace

        StackTrace st = new StackTrace(true);
        for(int i =0; i< st.FrameCount; i++ )
        {
            // Note that high up the call stack, there is only
            // one stack frame.
            StackFrame sf = st.GetFrame(i);
            Console.WriteLine();
            Console.WriteLine("High up the call stack, Method: {0}",
                sf.GetMethod());

            Console.WriteLine("High up the call stack, Line Number: {0}",
                sf.GetFileLineNumber());
        }

Upvotes: 3

Related Questions