Enum.GetUnderlyingType()
using System;
enum EmployeeType : byte
{
Manager = 10,
Programmer = 1,
Contractor = 100,
Developer = 9
}
class MainClass
{
public static void Main(string[] args)
{
Console.WriteLine(Enum.GetUnderlyingType(typeof(EmployeeType)));
}
}
Related examples in the same category