CodeKicker.BBCode.BBCodeParser.ParseWhitespace C# (CSharp) Метод

ParseWhitespace() статический приватный Метод

static private ParseWhitespace ( string input, int &pos ) : bool
input string
pos int
Результат bool
        static bool ParseWhitespace(string input, ref int pos)
        {
            int end = pos;
            while (end < input.Length && char.IsWhiteSpace(input[end]))
                end++;

            var found = pos != end;
            pos = end;
            return found;
        }
        static bool ParseLimitedWhitespace(string input, ref int pos, int maxNewlinesToConsume)