作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我想执行以下操作,但使用 C# 而不是 C++
#ifdef _DEBUG
bool bypassCheck=TRUE_OR_FALSE;//i will decide depending on what i am debugging
#else
bool bypassCheck = false; //NEVER bypass it
#endif
最佳答案
#if DEBUG
bool bypassCheck=TRUE_OR_FALSE;//i will decide depending on what i am debugging
#else
bool bypassCheck = false; //NEVER bypass it
#endif
确保在构建属性中勾选了定义 DEBUG 的复选框。
关于c# - 如何在 C# 中执行#ifdef,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/975355/
我是一名优秀的程序员,十分优秀!