C#预处理器指令

作者:追风剑情 发布于:2016-12-30 16:40 分类:C#

  1. #define DEBUG
  2. //#undef DEBUG
  3.  
  4. using System;
  5.  
  6. namespace TestXML
  7. {
  8. //关闭指定行号的警告,若不指定号行,则关闭所有警告。
  9. #pragma warning disable 414, 3021
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. //更改文件的GUID
  15. #pragma checksum "Program.cs" "{3673e4ca-6098-4ec1-890f-8fceb2a794a2}" "{012345678AB}" // New checksum
  16.  
  17. #region 折叠代码
  18.  
  19. #if DEBUG
  20. #warning DEBUG is defined
  21. #elif RELEASE
  22. #warning RELEASE is defined
  23. #else
  24. #error Not defined
  25. #endif
  26.  
  27. #endregion
  28.  
  29. #line 200 "修改警告/报错行号"
  30. int i; // CS0168 on line 200
  31. int j; // CS0168 on line 201
  32. #line default //恢复默认行号
  33. #line hidden //隐藏下面一行代码的行号
  34. string s;
  35. double d; // CS0168 on line 29
  36.  
  37. //开启指定行的警告,若不指定号行,则开启所有警告。
  38. #pragma warning restore 3021
  39.  
  40. Console.Read();
  41. }
  42. }
  43. }

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号