C#预处理器指令——学习
2021-02-02 15:15
标签:需要 处理 style index deb end fine RoCE 运行 若要详细了解如何使用 C# 预处理器指令选择性地编译代码段,请参阅 #define(C# 参考)和 #if(C# 参考)。 地址:https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/preprocessor-directives/preprocessor-define 地址:https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/preprocessor-directives/preprocessor-if 需要学习这方面的知识。 文章:C# 预处理器指令 记录时间:20190917 -------------------- 改代码只会在调试模式下运行 C#预处理器指令——学习 标签:需要 处理 style index deb end fine RoCE 运行 原文地址:https://www.cnblogs.com/Tpf386/p/11535313.html#define(C# 参考)
#if(C# 参考)
#if DEBUG
Console.WriteLine("Debug version");
#endif