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")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top