C# Enum GetType
Description
Enum GetType
gets the Type of the current instance.
Syntax
Enum.GetType
has the following syntax.
public Type GetType()
Returns
Enum.GetType
method returns The exact runtime type of the current instance.
Example
The following code shows how to use Enum.GetType
.
//from w w w . ja v a 2 s .c om
using System;
enum Colors { Red, Green, Blue, Yellow };
public class FormatTest {
public static void Main() {
Colors myColor = Colors.Blue;
Console.WriteLine(myColor.GetType());
}
}
The code above generates the following result.