AsmResolver.Net.Signatures.TypeNameParser.SkipSpaces C# (CSharp) Method

SkipSpaces() private static method

private static SkipSpaces ( string name, int &position ) : void
name string
position int
return void
        private static void SkipSpaces(string name, ref int position)
        {
            while (char.IsWhiteSpace(name[position]))
                position++;
        }