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

IsNumericType() private static method

private static IsNumericType ( Type type ) : bool
type Type
return bool
		private static bool IsNumericType(Type type)
		{
			return GetNumericTypeKind(type) != 0;
		}
ExpressionParser