System.Linq.Dynamic.ExpressionParser.IsEnumType C# (CSharp) Method

IsEnumType() private static method

private static IsEnumType ( Type type ) : bool
type Type
return bool
		private static bool IsEnumType(Type type)
		{
			return GetNonNullableType(type).IsEnum;
		}
ExpressionParser