Contact: aviboots(AT)netvision.net.il
41,230 questions
53,732 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 */