Kooboo.Commerce.Rules.TypeExtensions.IsNumericType C# (CSharp) Méthode

IsNumericType() public static méthode

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