M
ma
Hello,
I want to write something such as :
enum x{
x1=0,
x2,
x3,
x4,
xend};
#if xend != 6
#error size f enum is not correct
#endif
How can I do this in csharp?
Regards
I want to write something such as :
enum x{
x1=0,
x2,
x3,
x4,
xend};
#if xend != 6
#error size f enum is not correct
#endif
How can I do this in csharp?
Regards