C# Preprocessor Directives
You can use preprocessor directives in csharp to provide straightforward instructions to the compiler. For example, these directives allow you to execute certain code elements only under predefined conditions. Another possible field of use is simply the structuring of your source code into blocks, which can be folded in and out of Visual Studio. In this article I will discuss some of these directives. Preprocessor directives are always started with a #-symbol. ...