Hi, I have an enum and i want to "hide" one of its values (as i add it for future support). The code is written in C#.
public enum MyEnum
{
ValueA = 0,
ValueB = 1,
Reserved
}
I don't want to allow peoples who use this code to use this values (MyEnum.Reserved). Any idea? TIA