Several custom configuration in #if directive

1.7k Views Asked by At

I need the following logic

#if (DEV || QA || RELEASE)
//add when dev or qa or release configuration
#endif

Is it possible in c#?

3

There are 3 best solutions below

0
On BEST ANSWER

Yes. Quoting the #if documentation on MSDN:

You can use the operators && (and), || (or), and ! (not) to evaluate whether multiple symbols have been defined. You can also group symbols and operators with parentheses.

2
On
#define DEBUG 
#define MYTEST
using System;
public class MyClass 
{
    static void Main() 
    {
#if (DEBUG && !MYTEST)
        Console.WriteLine("DEBUG is defined");
#elif (!DEBUG && MYTEST)
        Console.WriteLine("MYTEST is defined");
#elif (DEBUG && MYTEST)
        Console.WriteLine("DEBUG and MYTEST are defined");
#else
        Console.WriteLine("DEBUG and MYTEST are not defined");
#endif
    }
}

Here simple code how to do it. You can read full documentation on C# Preprocessor Directives

0
On