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

MethodReference() public method

public MethodReference ( string name, TypeReference returnType ) : System
name string
returnType TypeReference
return System
        public MethodReference(string name, TypeReference returnType)
            : base(name)
        {
            if (returnType == null)
                throw new ArgumentNullException ("returnType");

            this.return_type = new MethodReturnType (this);
            this.return_type.ReturnType = returnType;
            this.token = new MetadataToken (TokenType.MemberRef);
        }

Same methods

MethodReference::MethodReference ( ) : System
MethodReference::MethodReference ( string name, TypeReference returnType, TypeReference declaringType ) : System