Boo.Lang.Compiler.TypeSystem.InternalCallableType.GetInvokeMethod C# (CSharp) Method

GetInvokeMethod() public method

public GetInvokeMethod ( ) : IMethod
return IMethod
        public IMethod GetInvokeMethod()
        {
            return (IMethod)_node.Members["Invoke"].Entity;
        }

Usage Example

 MethodInvocationExpression CreateInvokeInvocation(InternalCallableType type)
 {
     return CodeBuilder.CreateMethodInvocation(
                         CodeBuilder.CreateSelfReference(type),
                         type.GetInvokeMethod());
 }