Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
using System; namespace ConsoleApplication_C_Sharp { class Program { enum E : byte { e1, e2, e3 }; static void Main(string[] args) { Type type = Enum.GetUnderlyingType(typeof(E)); Console.WriteLine(type); } } } /* run: System.Byte */