【C#】预处理指令

预处理指令

它提供了一种控制某一块代码编译与否的方法。

csharp 复制代码
#define DEBUG
class MyClass
{
    int x;
    void Foo()
    {
        #if DEBUG
        Console.WriteLine("Testing:x={0}",x);
        #endif
    }
}

常用指令

预处理指令 含义
#define symbol 定义symbol,必须放到文件的第一行
#undef symbol 取消symbol 定义
#if symbol [operator symbol] 判断symbol符号。其中operator 可以是==、!=、&&、||。#if指令后可以跟#else、#elif和#endif
#else 加在#if后面
#elif symbol [operator symbol2] zudhe #else 和 #if判断
#endif 结束条件指令
#warning text 在编译器输出中显示text警告信息
#error text 在编译器输出中显示text错误信息
#pragma warning [disable | restore] 禁用/恢复编译器警告
#line [number["file"]]|hidden number是源代码的行号;file是输出的文件名;hidden指示调试器忽略此处到下一个#line指令之间的代码
#region name 标记大纲的开始位置
#endregion 结束一个大纲区域

案例:

#if 、#else 、#elif相关

#define symbol 必须放到第一行

csharp 复制代码
#define TOM
#define NET60

namespace TopSet17
{
    internal class Program
    {
        static void Main(string[] args)
        {

#if TOM
            Console.WriteLine("Debug mode is on.");
#elif TOM01
            Console.WriteLine("tom01");
#endif

            #region 正文
            Console.WriteLine("Hello, World!");
            #endregion

#if NET40
    // Code specific to .NET 4.0
    Console.WriteLine("This code will only compile for .NET 4.0.");

#elif NET45
    // Code specific to .NET 4.5
    Console.WriteLine("This code will only compile for .NET 4.5.");
#elif NET60
    // Code specific to .NET 6.0
    Console.WriteLine("This code will only compile for .NET 6.0.");
#else
            // Code specific to .NET 4.5
            Console.WriteLine("This code will only compile for .NET other");
#endif

        }
    }
}

//输出
Debug mode is on.
Hello, World!
This code will only compile for .NET 6.0.

#line相关,表示一个文件里面,可以拆分为不同的文件,并且下面代码是在第几行

csharp 复制代码
static void Main(string[] args)
{
    Method1();
}
#line 1 "Program1.cs"
    public static void Method1()
{
    Console.WriteLine("Method1 is called.");
}

#line 1 "Program2.cs"
    public static void Method2()
{
    Console.WriteLine("Method2 is called.");
}

#error 、 #warn

csharp 复制代码
#define TOM1
static void Main(string[] args)
{
    #if TOM
    //如果定义了TOM,那么下面就会在编译器报错
    #error "my error"
    #endif
    #if TOM1
    #warning "my warning"
    #endif
}

综合

csharp 复制代码
#define Debug//调试
#define Release//发布
#undef Debug//取消定义调试

#line 100
#pragma warning disable CS0219//消除CS0219警告
#region "代码折叠器"
#if Debug&&Release==false
	//调试版本执行
#elif !Debug&&Release
	//发布版本执行
#elif !Debug&&!Release
	//两个版本都不存在
	#error "两个版本都不存在";
#elif
	//发布和调试版本都执行
#endif
#warning "最后不要忘了把这段语句去掉";
#endregion
相关推荐
GLAB-Mary15 分钟前
华为HCIP认证培训多少天?
运维·服务器·华为
chengma_09090918 分钟前
elasticsearch 7.6.2版本即使使用wildcard模糊查询,也毫无过滤效果分析
java·服务器·前端
“抚琴”的人22 分钟前
C#—扩展方法
java·开发语言·c#
StarRocks_labs25 分钟前
深入解析 StarRocks 物化视图:全方位的查询改写机制
java·大数据·数据库·sql
丶Darling.37 分钟前
linux高性能服务器编程读书笔记目录&&建议
linux·服务器·网络编程·目录·系统编程·c/c++·博客总结
ghostwritten1 小时前
Linux setfacl 命令详解
linux·服务器·网络
hualinux1 小时前
windwos defender实现白名单效果(除了指定应用或端口其它一律禁止)禁止服务器上网
运维·服务器·windwos防火墙·defender防火墙·win防火墙白名单·防火墙白名单效果
是一只努力的小菜鸡啦1 小时前
Zerotier + VSCode远程连接实验室的服务器、Xshell连接远程服务器
服务器·ide·vscode
安全狗新闻1 小时前
服务器被入侵登录不上怎么办?
服务器
星月前端1 小时前
随记:springboot的xml中sql数据库表名动态写法
xml·数据库·spring boot