Mono.Cecil.TypeReference.TypeReference C# (CSharp) Method

TypeReference() protected method

protected TypeReference ( string @namespace, string name ) : System
@namespace string
name string
return System
        protected TypeReference(string @namespace, string name)
            : base(name)
        {
            this.@namespace = @namespace ?? string.Empty;
            this.token = new MetadataToken (TokenType.TypeRef, 0);
        }

Same methods

TypeReference::TypeReference ( string @namespace, string name, Mono.Cecil.ModuleDefinition module, IMetadataScope scope ) : System
TypeReference::TypeReference ( string @namespace, string name, Mono.Cecil.ModuleDefinition module, IMetadataScope scope, bool valueType ) : System