System.TypeExtensionMethods.IsEnum C# (CSharp) Method

IsEnum() public static method

public static IsEnum ( this type ) : bool
type this
return bool
        public static bool IsEnum(this Type type)
        {
            return type.GetTypeInfo().IsEnum;
        }
#if !UWP