c# – 缓存反射属性getter / setter的最佳方法?

前端之家收集整理的这篇文章主要介绍了c# – 缓存反射属性getter / setter的最佳方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道反思可能是昂贵的.我有一个经常获得/设置属性的类,我想到的一种方法是以某种方式缓存反射.我不知道我是否应该缓存一个表达式,或者这里真的要做什么.这正是我目前正在做的:
typeof(T).GetProperty(propName).SetValue(obj,value,null);
typeof(T).GetProperty(propName).GetValue(obj,null);

那么,什么是最快捷的方法呢?

@H_301_7@解决方法
你应该缓存的结果
typeof(T).GetProperty(propName);

typeof(T).GetProperty(propName);

另一种可能的方法是将PropertyInfo.GetGetMethod Method (或PropertyInfo.GetSetMethod Method for setter)与Delegate.CreateDelegate Method 组合,并在每次需要获取/设置值时调用生成的委托.如果你需要这个工具与泛型,你可以使用这个问题的方法CreateDelegate with unknown types

这应该比反射快得多:
Making reflection fly and exploring delegates

还有其他方法可以更快地获取/设置值.您可以使用表达式树或DynamicMethod在运行时生成il.看看这些链接

Late-Bound Invocations with DynamicMethod

Delegate.CreateDelegate vs DynamicMethod vs Expression

原文链接:https://www.f2er.com/csharp/96134.html

猜你在找的C#相关文章