提高object.GetType()。GetProperties()和PropertyInfo.GetValue(object)的性能

时间:2018-12-20 16:38:19

标签: c# reflection delegates system.reflection dynamicmethod

private static int GenerateKey(T requestParams)
{
    foreach (PropertyInfo property in requestParams.GetType().GetProperties())
    {
            var propertyValue = property.GetValue(requestParams);
            // Do stuff with propertyValue
    }
    // ...
}

我有这个代码片段,可以遍历泛型类型的属性并提取每个属性的值。我知道反射可能是一个巨大的性能瓶颈,可以使用委托/ DynamicMethod / ILGenerator进行改进。但是,要掌握这些内容相当困难。如何使用其中一种方法的示例非常棒。

1 个答案:

答案 0 :(得分:0)

private PropertyInfo[] Properties { get; }
private Func<T, PropertyInfo, object> ExecutableGetter { get; }

public Constructor()
{
      Properties = typeof(T).GetProperties();
      Expression<Func<T, PropertyInfo, object>> getter = (tParams, property) => property.GetValue(tParams);
      ExecutableGetter = getter.Compile();
}

private int GenerateKey(T requestParams)
{
    foreach (PropertyInfo property in Properties)
    {
            var propertyValue = ExecutableGetter(requestParams, property);
            // Do stuff with propertyValue
    }
    // ...
}

使用表达式树/委托的解决方案