fCraft.SimpleParser.ReadSpaces C# (CSharp) Method

ReadSpaces() private static method

private static ReadSpaces ( string s, int &pos ) : void
s string
pos int
return void
        private static void ReadSpaces( string s, ref int pos )
        {
            while ( pos < s.Length && ( s[pos] == ' ' || s[pos] == '\t' ) )
                ++pos;
        }