更新:2007 年 11 月

#undef 使您可以取消符号的定义,以便通过将该符号用作 #if 指令中的表达式,使表达式的计算结果为 false

可以使用 #define 指令或 /define 编译器选项定义符号。在使用任何不是指令的语句之前,必须在文件中使用 #undef 指令。

示例

 复制代码
// preprocessor_undef.cs
// compile with: /d:DEBUG
#undef DEBUG
using System;
class MyClass 
{
    static void Main() 
    {
#if DEBUG
        Console.WriteLine("DEBUG is defined");
#else
        Console.WriteLine("DEBUG is not defined");
#endif
    }
}
 复制代码
DEBUG is not defined

请参见