示例#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);
        }
示例#2
0
 private void GenerateInvoke()
 {
     this._invokeMethod = base.CreateRuntimeMethod("Invoke", this._returnType, this._args);
 }