Enums


  1.  Enum is a keyword, Enums are strongly typed constants. 
  2. It is value type means,stored in stack directly value,  It is Inherited from the System.Enum namespace.
  3.  Default type for Enum is Integer, If No values are provided to your enums the value of first element represents to 0 and so on
  4.  we will uses when set of integral numbers are associated.

Syntax:
public enum Month
{
//List of elements with values or without values
}

 public enum Month
{
//List of elements with values or without values
}

Example:-


Output :-