declare variable enum c# code example
Example: declare enum c#
enum Level
{
Low,
Medium,
High
}
enum Months
{
January, // 0
February, // 1
March, // 2
April, // 3
May, // 4
June, // 5
July // 6
}