Sends a string to the debugger for display.
[DllImport("kernel32.dll")]
static extern void OutputDebugString(string lpOutputString);
<DllImport("kernel32.dll")> _
Shared Sub OutputDebugString(ByVal lpOutputString As String)
End Sub
OR (as in VB 6)
Public Declare Sub OutputDebugString Lib "kernel32" Alias _
"OutputDebugStringA" (ByVal lpOutputString As String)
None.
None.
Get DebugView here (http://www.sysinternals.com/Utilities/DebugView.html) to display the output of OutputDebugString.
Please add some!
Please add some!
System.Diagnostics.Debugger.Log