我有一个包含带有对象的列表的通用对象,我想访问它。使用
object sourceValue = new List<tab> {new tab()};
PropertyInfo[] sourcePropertyInfo = sourceValue.GetType().GetProperties();
//First field of PropertyInfo is the list, second is a Raw instance
object result = sourcePropertyInfo[0].GetValue(sourceValue, null);
标签对象如下所示:
public partial class tab
{
public long TabId { get; set; }
public string Title { get; set; }
}
这里我想通过结果变量访问列表,但结果是结果= 0,这是一个整数。大多数人都需要从列表中获取count属性。 如何访问列表中对象中的值(类型选项卡)?
注意,我无法访问或更改对象sourceValue的类型。
答案 0 :(得分:4)
您正在获取列表类型的属性,而不是元素的类型。
foreach (object element in (sourceValue as IEnumerable ?? Enumerable.Empty<object>()))
{
var type = element.GetType();
var props = type.GetProperties();
object result = props.First().GetValue(element, null);
}
注意:这可以优化:)