DebugView로 디버깅을 좀더 쉽게 해보자


참조 URL
  1. http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx



 Visual Studio가 없는 상태에서 디버그 메시지 출력을 보여주는 유틸리티이다. "코드1"와 같이 출력하면 기본적으로 Visual Studio의 Output 창으로 출력이 되던 정보가 서버 배포나 일반 PC로 배포가 되었을 때 디버깅을 하기 쉽도록 지원해 준다. 


Debug.WriteLine("Debug String #1");
Trace.WriteLine("Trace String #2");

[코드1] Output에 정보를 출력한다.



"http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx"에서 다운 받아 실행하면 "그림1"과 같다.



[그림1] DebugView 실행 화면




[그림2] DebugView에서 메시지를 캡춰한 화면





+ Recent posts