If you DEFINE a macro, during compilation any instance of that macro will be replaced with what you gave:
#include <stdio.h>
#define PI 3.141592654
int main() {
printf("%f\n", PI);
}
You can define more complicated macros (always remember to use brackets - the x could be anything!):
#define PRINT(x) printf("%s\n", (x))
/* Then you could say PRINT("Hello, world.\n"); and it would
* be replaced with printf("%s\n", "Hello, World\n");
*/
And check if something is defined:
#ifdef linux
/* if linux is defined, this will be compiled. It will be left out if not. */
#endif
Also useful for compiling out blocks of code:
#if 0
/* This code will never be included for compilation. */
#endif
Remember that the preprocessor always works at compile-time, never run-time (that is, it actually changes the file before compilation).
EDIT:
I just noticed you were referring to C#. There are better ways to almost everything listed above in a modern language like C#, though I think most will still work. Use only as a last resort.