Kooboo.Commerce.Search.Facets.FacetedSearcher.IsLowPrecisionNumber C# (CSharp) Méthode

IsLowPrecisionNumber() static private méthode

static private IsLowPrecisionNumber ( string value ) : bool
value string
Résultat bool
        static bool IsLowPrecisionNumber(string value)
        {
            if (String.IsNullOrEmpty(value))
            {
                return false;
            }

            return value[0] - NumericUtils.SHIFT_START_INT != 0 &&
                   value[0] - NumericUtils.SHIFT_START_LONG != 0;
        }