Data Type C# Tutorial

using System;
enum EmployeeType : byte 
{
  Manager = 10,
  Programmer = 1,
  Contractor = 100,
  Developer = 9
}
class MainClass
{
  public static void Main(string[] args)
  {
    Array obj = Enum.GetValues(typeof(EmployeeType));
    Console.WriteLine("This enum has {0} members:", obj.Length);
  }
}
This enum has 4 members: