摘要:
sbyte 别名 System.SByte -128~127 byte 别名System.Byte 0~255 short 别名System.Int16 ushort 别名 System.UInt16 int 别名 System.Int32 uint 别名 System.UInt32 long 别名 System.Int64 ulong 别名 System.U... 阅读全文
摘要:
1,非中断模式下的调试。 利用系统“输出”窗口。(视图-输出)来打印调试信息。有Debug和Release两种版本,通过运行按钮右边的选项可以选择程序的运行方式。而对应的现实调试信息的方法也不同。 调用前声明: using System.Diagnostics; 调用方式: Debug.WriteLine(); Debug.WriteLineIf();//两个参数,当第一个... 阅读全文