反射-当对象属性处于List<>;

本文关键字:List lt gt 对象 属性 反射 | 更新日期: 2023-09-27 18:21:09

我知道我可以使用反射来设置对象属性,如下所示。

    public void SaveContent(string propertyName, string contentToUpdate, string corePageId)
    {
        var page = Session.Load<CorePage>(corePageId);
        Type type = page.GetType();
        PropertyInfo prop = type.GetProperty(propertyName);
        prop.SetValue(page, contentToUpdate, null);
    }

我有以下课程:

public class CorePage
{
    public string BigHeader { get; set; }
    public List<BigLinks> BigLinks { get; set; }
}
 public class BigLinks
{
    public string TextContent { get; set; }
}

当要设置的属性为,例如public string BigHeader { get; set; }时,我的SaveContent()-方法显然有效但是,如果我想设置的属性在属性中,我该怎么做呢:

public List<BigLinks> BigLinks { get; set; }

如果public List<BigLinks> BigLinks { get; set; }是5个BigLinks对象的列表,如何设置第三个对象public string TextContent { get; set; }的值?

反射-当对象属性处于List<>;

您必须使用反射获取属性值,并更改所需值,如下所示:

var c = new CorePage() { BigLinks = new List<BigLinks> { new BigLinks { TextContent = "Y"}}};
var r = typeof(CorePage).GetProperty("BigLinks").GetGetMethod().Invoke(c, null) as List<BigLinks>;
    r[0].TextContent = "X";

如果您不知道列表项的类型:

var itemInList = (typeof(CorePage).GetProperty("BigLinks").GetGetMethod().Invoke(c, null) as IList)[0];
itemInList.GetType().GetProperty("TextContent").SetValue(itemInList, "XXX", null);

另一种选择是动态铸造:

var itemInList = (typeof(CorePage).GetProperty("BigLinks").GetGetMethod().Invoke(c, null) as dynamic)[0].TextContent = "XXXTTT";