Desktop Functions: Smart Device Functions:
|
Search Results for "OutputDebugString" in [All]kernel32
static extern void OutputDebugString(string lpOutputString);
Shared Sub OutputDebugString(ByVal lpOutputString As String)
Public Declare Sub OutputDebugString Lib "kernel32" Alias _
"OutputDebugStringA" (ByVal lpOutputString As String) Get DebugView here (http://www.sysinternals.com/Utilities/DebugView.html) to display the output of OutputDebugString. This C# example extends the OutputDebugString(...) with variable arguments:
public static void OutputDebugStringVarArg(
OutputDebugString(string.Format(format, args)); Now run the function as follows: OutputDebugStringVarArg("It is {0} past {1}", new object[] {5,10 }); Get OutputDebugString function implementation that accepts variable number of arguments like printf here (http://www.go4expert.com/forums/showthread.php?t=871)
OutputDebugString("OutputDebugString Successfully executed"); |