what is a collection of named constants with specific enumerated values in C# code example
Example: public enum c#
enum Season
{
Spring,
Summer,
Autumn,
Winter
}
enum Season
{
Spring,
Summer,
Autumn,
Winter
}