::资源简介::
调试工具,用于软件调试输出。
C#使用方法:
[System.Runtime.InteropServices.DllImport("kernel32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)]
public static extern void OutputDebugString(string message);
Trace.Write("Trace");
Debug.Write("Debug");
Debugger.Log(0, null, "Debugger");
OutputDebugString("OutputDebugString");
四个输出语句均能输出到DebugView.exe里面
::下载地址::
>> 评论