Is there a C# equivalent method to Java's Exception.printStackTrace() or do I have to write something myself, working my way through the InnerExceptions?
| ||||
|
feedback
|
|
Try this:
From http://msdn.microsoft.com/en-us/library/system.exception.tostring.aspx:
Note that in the above code the call to | ||||
|
feedback
|
|
I would like to add: If you want to print the stack outside of an exception, you can use:
| |||
|
feedback
|
|
As Drew says, just converting the exception a string does this. For instance, this program:
Produces this output:
| |||
|
feedback
|
|
http://msdn.microsoft.com/en-us/library/system.exception.stacktrace.aspx Console.WriteLine(myException.StackTrace); | |||
|
feedback
|
| |||||||
feedback
|
|
Is there no C# Logging API that can take an Exception as an argument and handle everything for you, like Java's Log4J does? I.e., use Log4NET. | |||||||
feedback
|