What Predefined #if symbos does c# have?

c#

Solution

To add to what Nick said, the MSDN documentation does not list any pre-defined names. It would seem that all need to come from `#define` and `/define`.

#if on MSDN

Problem

``` #if SYMBOL //code #endif ``` what values does C# predefine for use?

Original source