Exemplo n.º 1
0
        public EasyRuntimeMethod CreateRuntimeMethod(string name, ReturnReferenceExpression returnType, params ArgumentReference[] arguments)
        {
            EasyRuntimeMethod method = new EasyRuntimeMethod(this, name, returnType, arguments);

            this._methods.Add(method);
            return(method);
        }
Exemplo n.º 2
0
 private void GenerateInvoke()
 {
     this._invokeMethod = base.CreateRuntimeMethod("Invoke", this._returnType, this._args);
 }