S
Scott
What is the equivalent way to #define a variable and value
in C#?
I am porting a program with multiple #define's as such:
#define TIFF_VERSION 42
#define TIFF_BIGENDIAN 0x4d4d
#define TIFF_LITTLEENDIAN 0x4949
C# supports #define but not adding a value to it.
Is there a better way to do this in C#?
Scott
in C#?
I am porting a program with multiple #define's as such:
#define TIFF_VERSION 42
#define TIFF_BIGENDIAN 0x4d4d
#define TIFF_LITTLEENDIAN 0x4949
C# supports #define but not adding a value to it.
Is there a better way to do this in C#?
Scott