非中断模式下的调试
首先设置一下IDE
在程序中引用
using System.Diagnostics;
调用方式:
Debug.WriteLine();
Debug.WriteLineIf();//两个参数,当第一个参数为true时,第二个参数的调试信息会显示出来。
Trace.WriteLine();//Release版本,当然Debug中也可以显示
Trace.WriteLineIf();//同上
例:
Debug.WriteLine(gxid + " " + gyid);
hp.GridToXY(gxid, gyid, ref x, ref y);
Debug.WriteLine(x + " " + y);
运行时在即时窗口查看输出