foreach (object o in Enum.GetValues(typeof(EmpType)))
{
Console.WriteLine("{0}:{1}", o, Enum.Format(typeof(EmpType), o, "D"));
}
foreach (object o in Enum.GetValues(typeof(EmpType)))
{
Console.WriteLine("{0}:{1}", o, Enum.Format(typeof(EmpType), o, "D"));
}