Poupou.SvgPathConverter.SvgPathParser.MorePointsAvailable C# (CSharp) Méthode

MorePointsAvailable() static private méthode

static private MorePointsAvailable ( string s, int pos ) : bool
s string
pos int
Résultat bool
        static bool MorePointsAvailable(string s, int pos)
        {
            if (pos >= s.Length)
                return false;
            char c = s [pos];
            while (Char.IsWhiteSpace (c) || c == ',')
                c = s [++pos];
            return Char.IsDigit (c) || c == '.' || c == '-' || c == '+';
        }