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