摘要:
using System;using System.Reflection;using System.Reflection.Emit;using System.Collections.Generic;using System.Text;using System.Diagnostics;namespace FastMethodInvoker{ public delegate object FastInvokeHandler(object target, object[] paramters); public delegate void SayHandler(string word); ... 阅读全文