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

IsUnsignedIntegralType() private static method

private static IsUnsignedIntegralType ( Type type ) : bool
type Type
return bool
		private static bool IsUnsignedIntegralType(Type type)
		{
			return GetNumericTypeKind(type) == 3;
		}
ExpressionParser