Kooboo.Commerce.Rules.TypeExtensions.IsNumericType C# (CSharp) Метод

IsNumericType() публичный статический Метод

public static IsNumericType ( this type ) : bool
type this
Результат bool
        public static bool IsNumericType(this Type type)
        {
            Require.NotNull(type, "type");
            return _numericTypes.Contains(type);
        }
TypeExtensions