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

ReadTypeSignature() private static method

private static ReadTypeSignature ( IResolutionScope scope, string name, int &position ) : TypeSignature
scope IResolutionScope
name string
position int
return TypeSignature
        private static TypeSignature ReadTypeSignature(IResolutionScope scope, string name, ref int position)
        {
            TypeSignature type = null;
            while (position < name.Length && name[position] != ',')
            {
                type = ReadTypeSignature(ReadTypeDefOrRefSignature(scope, name, ref position), name, ref position);
            }
            return type;
        }

Same methods

TypeNameParser::ReadTypeSignature ( TypeSignature elementType, string name, int &position ) : TypeSignature