views:

199

answers:

3

Is there a simplistic reference for all preprocessor directives?

+2  A: 

The C# compiler doesn't have a preprocessor in the traditional sense, but it does support a limited number of preprocessor like commands #define, #if and so forth, but you will not be able to do the same stunts that e.g. a C/C++ preprocessor can do.

EDIT: While typing other have supplied lists of supported options. Thumbs up.

Brian Rasmussen
+1 Good to point out.
Andrew Hare