Is it possible to capture debug output (create a debug listener) in C #?
I would like to have functionality like DebugView , but I would like to log debug output to SQL Server. Or maybe the best way would be to make the DebugView log into a file and then submit the file to SQL Server?
I implemented TraceListener and added it to the Debug.Listeners , but it seems to debug it only from my application. What I want to do is capture debugging from all applications. Is there any way to do this?
source share