Kooboo.Commerce.Rules.TypeExtensions.IsNumericType C# (CSharp) Method

IsNumericType() public static method

public static IsNumericType ( this type ) : bool
type this
return bool
        public static bool IsNumericType(this Type type)
        {
            Require.NotNull(type, "type");
            return _numericTypes.Contains(type);
        }
TypeExtensions