动态方法的实际例子?
我想学习动态方法及其使用 C# 的实际示例。
动态方法和Reflection有什么关系吗?
请帮我。
I want to learn dynamic method and its practical example using c#.
Is there any relation between dynamic method and Reflection?
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们正在使用动态方法来加速反射。
这是我们的反射优化器的代码。它只比直接调用慢 10%,而反射调用
实现是从不同来源聚合的,速度快 2000 倍,主要是这篇 CodeProject 文章。
We are using Dynamic methods for speed up Reflection.
Here is code of our reflection optimizer. it is only 10% slower than direct call and 2000 times faster that reflection call
implementation is aggregated from different sources and main is this CodeProject article.
您可以通过 DynamicMethod 类创建方法。
MSDN 上完整评论的示例
需要注意的是,使用这种方法的开发速度非常慢,而且用处不大。
You can create a method via DynamicMethod class.
Fully commented example on MSDN
I should note that the development using this method is very slow and not very useful.