Enum.GetUnderlyingType Method
Updated: June 2011
Returns the underlying type of the specified enumeration.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- enumType
- Type: System.Type
The enumeration whose underlying type will be retrieved.
| Exception | Condition |
|---|---|
| ArgumentNullException |
enumType is null. |
| ArgumentException |
enumType is not an Enum. |
The Enum structure enables values to be represented as named constants. The data type of the enumeration's values is known as its underlying type. For example, the underlying type of the DayOfWeek enumeration, which consists of constants that represent each day of the week (DayOfWeek.Monday, DayOfWeek.Tuesday, and so on), is Int32.
The following example calls the GetUnderlyingType method to display the underlying type of some enumeration members.
using System; public class Example { public static void Main() { Enum[] enumValues = { ConsoleColor.Red, DayOfWeek.Monday, MidpointRounding.ToEven, PlatformID.Win32NT, DateTimeKind.Utc, StringComparison.Ordinal }; Console.WriteLine("{0,-10} {1, 18} {2,15}\n", "Member", "Enumeration", "Underlying Type"); foreach (var enumValue in enumValues) DisplayEnumInfo(enumValue); } static void DisplayEnumInfo(Enum enumValue) { Type enumType = enumValue.GetType(); Type underlyingType = Enum.GetUnderlyingType(enumType); Console.WriteLine("{0,-10} {1, 18} {2,15}", enumValue, enumType.Name, underlyingType.Name); } } // The example displays the following output: // Member Enumeration Underlying Type // // Red ConsoleColor Int32 // Monday DayOfWeek Int32 // ToEven MidpointRounding Int32 // Win32NT PlatformID Int32 // Utc DateTimeKind Int32 // Ordinal StringComparison Int32
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.