gpt4 book ai didi

c# - 使用反射设置类型为 List 的属性

转载 作者:可可西里 更新时间:2023-11-01 07:54:59 24 4
gpt4 key购买 nike

如何使用反射创建带有自定义类 (List ) 的通用列表?我需要能够添加值并使用 propertyInfo.SetValue(..., ..., ...) 来存储它。将这些 List<> 存储为其他数据结构会更好吗?

编辑:

我应该指定对象更像这样,但 Marc Gravell 的回答仍然有效。

class Foo
{
public List<string> Bar { get; set; }
}

最佳答案

class Foo
{
public string Bar { get; set; }
}
class Program
{
static void Main()
{
Type type = typeof(Foo); // possibly from a string
IList list = (IList) Activator.CreateInstance(
typeof(List<>).MakeGenericType(type));

object obj = Activator.CreateInstance(type);
type.GetProperty("Bar").SetValue(obj, "abc", null);
list.Add(obj);
}
}

关于c# - 使用反射设置类型为 List<CustomClass> 的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/315231/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com