public enum Color
{
Red,
Yellow,
Green
}
Enum are Stored as Constants Internally.i.e each name gets mapped to corresponding value.
public enum Color
{
Red,
Yellow,
Green
}
Enum are Stored as Constants Internally.i.e each name gets mapped to corresponding value.