Outputdebugstring

  • Thread starter Thread starter Lou
  • Start date Start date
L

Lou

In VB6 I would use the API
"OutputDebugString"
so I could view my internal workings using DBView.exe
Is there something native in DotNet that can replace
OutputDebugString
so I can view whats happening inside of my code whike the exe is running?

Lou
 
In VB6 I would use the API
"OutputDebugString"
so I could view my internal workings using DBView.exe
Is there something native in DotNet that can replace
OutputDebugString
so I can view whats happening inside of my code whike the exe is running?

System.Diagnostics.Debugger.Log(1, "category", "message")
 
Back
Top