我想根据我是否在调试模式下构建来有条件地排除/包含代码。
我可以像在C ++中一样使用像#ifndef _DEBUG这样简单的东西吗?
答案 0 :(得分:51)
#if DEBUG
Console.WriteLine("Debug version");
#endif
#if !DEBUG
Console.WriteLine("NOT Debug version");
#endif
请参阅this。
答案 1 :(得分:4)
答案 2 :(得分:3)
#if !DEBUG
// whatever
#endif