如何在 C# 中使用 #undef 指令?
#undef 指令允许你取消定义一个符号。以下是语法 −
#undef SYMBOL
例如:
#undef One
当与 #if 指令一起使用时,它会计算为假。让我们来看一个示例 −
示例
#define One #undef Two using System; namespace Demo { class Program { static void Main(string[] args) { #if (One && TWO) Console.WriteLine("Both are defined"); #elif (ONE && !TWO) Console.WriteLine("ONE is defined and TWO is undefined"); #elif (!ONE && TWO) Console.WriteLine("ONE is defined and TWO is undefined"); #else Console.WriteLine("Both are undefined"); #endif } } }
输出
Both are undefined
Advertisement