标签:system 选中 调试 使用 deb trace 变化 小技巧 write
可以使用输出来调试程序,监测程序变量的变化,但是不能使用Console.WriteLine,可以使用Debug.WriteLine
//System.Diagnostics.Trace 高于 System.Diagnostics.Debug 高于Console.WriteLine
System.Diagnostics.Debug.WriteLine($"手动选中范围:{string.Join(",", r1, r2, c1, c2)}");
标签:system 选中 调试 使用 deb trace 变化 小技巧 write
原文地址:http://www.cnblogs.com/lbzhu/p/7650243.html