In C you can define constants like this
#define NUMBER 9
so that wherever NUMBER appears in the program it is replaced with 9. But Visual
Check How to: Define Constants in C# on MSDN:
In C# the #define preprocessor directive cannot be used to define constants in the way that is typically used in C and C++.
#define