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