#if Not Debug in c#?
I have the line in vb code:
#if Not Debug
开发者_如何学C
which I must convert, and I don't see it in c#?
Is there something equivalent to it, or is there some workaround?
You would need to use:
#if !DEBUG
// Your code here
#endif
Or, if your symbol is actually Debug
#if !Debug
// Your code here
#endif
From the documentation, you can effectively treat DEBUG
as a boolean. So you can do complex tests like:
#if !DEBUG || (DEBUG && SOMETHING)
Just so you are familiar with what is going on here, #if
is a pre-processing expression, and DEBUG
is a conditional compilation symbol. Here's an MSDN article for a more in-depth explanation.
By default, when in Debug configuration, Visual Studio will check the Define DEBUG constant option under the project's Build properties. This goes for both C# and VB.NET. If you want to get crazy you can define new build configurations and define your own Conditional compilation symbols. The typical example when you see this though is:
#if DEBUG
//Write to the console
#else
//write to a file
#endif
Just in case it helps someone else out, here is my answer.
This would not work right:
#if !DEBUG
// My stuff here
#endif
But this did work:
#if (DEBUG == false)
// My stuff here
#endif
I think something like will work
#if (DEBUG)
//Something
#else
//Something
#endif
bool isDebugMode = false;
#if DEBUG
isDebugMode = true;
#endif
if (isDebugMode == false)
{
enter code here
}
else
{
enter code here
}
精彩评论