Boo.Lang.Compiler.TypeSystem.InternalCallableType.GetInvokeMethod C# (CSharp) 메소드

GetInvokeMethod() 공개 메소드

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

Usage Example

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