자료출처 http://yegam400.tistory.com/395
C#에서 OutputDebugString을 할려면 다음과 같은 2가지 방법이 있다.
Debug.Write(), Trace.Write()의 차이점은 Debug는 Debug모드 빌드에서만 동작하며, Trace는 Release/Debug 둘다 동작한다는 점이다. 물론 OutputDebugString기반이므로 DebugView에서도 확인할 수 있다.
System.Diagnostics.Debug.Write("Debug1");
System.Diagnostics.Debug.Write("Debug2");
System.Diagnostics.Trace.Write("Trace1");
System.Diagnostics.Trace.Write("Trace2");
자료출처 http://www.go4expert.com/forums/showthread.php?t=2061
System.Diagnostics.Debug.WriteLine("I am using dot net debugging");
System.Diagnostics.Trace.WriteLine("I am using dot net tracing");
System.Diagnostics.Trace.WriteLine("I am using dot net tracing");
[출처] C#에서 OutputDebugString하기|작성자 사오정
'개발지식창고 > C#' 카테고리의 다른 글
COM+ 컴포넌트 멀티쓰레드 실행을 위한 IIS설정 (0) | 2015.02.14 |
---|---|
.net Framework Error (HRESULT 0x8007000B) (0) | 2015.02.11 |
C# MultiMedia API in MSDN (0) | 2015.01.31 |
ftp, http Up,DownLoad 방법 (0) | 2013.03.15 |
ToolStrip Docking Move (0) | 2013.02.21 |