码迷,mamicode.com
首页 > Windows程序 > 详细

c# 预处理命令

时间:2015-06-05 15:30:40      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

在编译之前进行的处理。

预处理命令以符号“#”开头。

#define 只能 定义符号 不能定义宏(#define PI 3.14 这是错的,在c#中没宏)

#region #endregion

#if #end if 

#define MyDebug
#undef MyDebug
#define MyTrace

#if (MyDebug)
            Console.WriteLine("MyDebug is enabled");
#elif(MyTrace)
            Console.WriteLine("MyTrace is enabled");
#else
            Console.WriteLine("MyDebug is not enabled");
#endif
            Console.ReadLine();

#warning #error

#error 发生错误了.
#warning 发生警告了.

#line #line default

c# 预处理命令

标签:

原文地址:http://www.cnblogs.com/handsomer/p/4554585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!