Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "OutputDebugString" in [All]

kernel32

.
Summary
.

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

.
Documentation

 
Access PInvoke.net directly from VS: