使用传统的.net反射机制,调用类的方法时,在调用频率大的情况下,会感觉速度很慢。最近浏览http://www.codeproject.com/csharp/FastMethodInvoker.asp

 

快速反射调用类

[转]推荐一个快速反射调用的类using System;
[转]推荐一个快速反射调用的类
using System.Collections.Generic;
[转]推荐一个快速反射调用的类
using System.Text;
[转]推荐一个快速反射调用的类
using System.Reflection;
[转]推荐一个快速反射调用的类
using System.Reflection.Emit;
[转]推荐一个快速反射调用的类
[转]推荐一个快速反射调用的类
namespace FastMethodInvoker
效果测试程序
[转]推荐一个快速反射调用的类using System;
[转]推荐一个快速反射调用的类
using System.Reflection;
[转]推荐一个快速反射调用的类
using System.Reflection.Emit;
[转]推荐一个快速反射调用的类
using System.Collections.Generic;
[转]推荐一个快速反射调用的类
using System.Text;
[转]推荐一个快速反射调用的类
using System.Diagnostics;
[转]推荐一个快速反射调用的类
[转]推荐一个快速反射调用的类
namespace FastMethodInvoker
原文:http://www.cnblogs.com/heekui/archive/2007/01/10/616654.html

相关文章:

  • 2021-07-18
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2021-04-30
  • 2021-08-11
  • 2022-12-23
猜你喜欢
  • 2021-07-06
  • 2021-05-24
  • 2022-03-07
  • 2021-06-09
相关资源
相似解决方案