afatdog,
You can not use macros in C#. The #define preprocessor directive is
used to define environment variables for things such as conditional
compilation and the like. It can not be used to define macros.
If you want to do this, then you should create a static method on a
type, and then set a reference to the assembly containing that type
everywhere you wish to use it.
Hope this helps.