System.CodeDom.CodeDelegateCreateExpression.CodeDelegateCreateExpression C# (CSharp) Method

CodeDelegateCreateExpression() public method

public CodeDelegateCreateExpression ( CodeTypeReference delegateType, System.CodeDom.CodeExpression targetObject, string methodName ) : System.Diagnostics
delegateType CodeTypeReference
targetObject System.CodeDom.CodeExpression
methodName string
return System.Diagnostics
        public CodeDelegateCreateExpression(CodeTypeReference delegateType, CodeExpression targetObject, string methodName) {
            this.delegateType = delegateType;
            this.targetObject = targetObject;
            this.methodName = methodName;
        }

Same methods

CodeDelegateCreateExpression::CodeDelegateCreateExpression ( ) : System.Diagnostics
CodeDelegateCreateExpression