#endif 指定以 #if 指令开头的条件指令的结尾。例如,

 CopyCode image复制代码
        #define DEBUG
// ...
#if DEBUG
    Console.WriteLine("Debug version");
#endif

Expand 图像备注

Expand image请参见