M
Martijn Hoogendoorn
[Flags]
public enum myEnum
{
a,
b,
c,
d,
e,
}
myEnum c = myEnum.a | myEnum.b | myEnum.c | myEnum.e | ...;
I want to generate the line above, is there any way to do this (language
independent ofcourse)
Thanks!
Martijn
public enum myEnum
{
a,
b,
c,
d,
e,
}
myEnum c = myEnum.a | myEnum.b | myEnum.c | myEnum.e | ...;
I want to generate the line above, is there any way to do this (language
independent ofcourse)
Thanks!
Martijn