菜鸟学C#

淡泊以明志,宁静以致远

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2009年8月3日

摘要: 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... 阅读全文
posted @ 2009-08-03 18:20 东东会会 阅读(344) 评论(0) 推荐(0) 编辑

摘要: 1,非中断模式下的调试。 利用系统“输出”窗口。(视图-输出)来打印调试信息。有Debug和Release两种版本,通过运行按钮右边的选项可以选择程序的运行方式。而对应的现实调试信息的方法也不同。 调用前声明: using  System.Diagnostics; 调用方式: Debug.WriteLine(); Debug.WriteLineIf();//两个参数,当第一个... 阅读全文
posted @ 2009-08-03 13:53 东东会会 阅读(1187) 评论(0) 推荐(0) 编辑