I have a regular C# code. I have no exceptions. I want to programmatically log the current stack trace for debugging purpose. Example:
public void executeMethod()
{
logStackTrace();
method();
}
|
I have a regular C# code. I have no exceptions. I want to programmatically log the current stack trace for debugging purpose. Example:
|
||||
|
|
|
Have a look at the System.Diagnostics namespace. Lots of goodies in there!
This is really good to have a poke around in to learn whats going on under the hood. I'd recommend that you have a look into logging solutions (Such as NLog, log4net or the Microsoft patterns and practices Enterprise Library) which may achieve your purposes and then some. Good luck mate! |
|||||
|
|
An alternative to |
|||||||||||||
|
|
There are two ways to do this. The You may also want to check out Stack Overflow question How to get non-current thread's stacktrace?. |
||||
|
|