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());
 }