5

我试图找到包含实现接口的对象的所有属性,并在对象上执行方法。这是我到目前为止的代码:

foreach (var propertyInfo in this.GetType().GetProperties()
    .Where(xx => xx.GetCustomAttributes(typeof(SearchMeAttribute), false).Any()))
{
    if (propertyInfo.PropertyType.GetInterfaces().Any(xx => xx == typeof(IAmSearchable)))
    {
        // the following doesn't work, though I hoped it would
        return ((IAmSearchable)propertyInfo).SearchMeLikeYouKnowIAmGuilty(term);
    }
}

不幸的是,我得到了错误:

无法将“System.Reflection.RuntimePropertyInfo”类型的对象转换为“ConfigurationServices.ViewModels.IAmSearchable”类型。

我怎样才能得到实际的对象,而不是RuntimePropertyInfo?

4

1 回答 1

13

您需要使用以下GetValue方法从属性中获取值:

object value = propertyInfo.GetValue(this, null);

this是属性的“目标”,表示null您期望的只是无参数属性,而不是索引器。

于 2012-07-23T15:47:54.953 回答