gpt4 book ai didi

c# - C#中的动态类创建

转载 作者:太空狗 更新时间:2023-10-29 23:04:15 24 4
gpt4 key购买 nike

是否可以在运行时从 DataTable 创建一个类,其中 ColumnName 将是动态类属性?

最佳答案

使用 C# 4,您可以做到这一点

dynamic foo = new ExpandoObject();

// mimic grabbing a column name at runtime and adding it as a property
((IDictionary<string, object>)foo).Add("Name", "Apple");

Console.WriteLine(foo.Name); // writes Apple to screen

不推荐它或任何东西,但它向您展示了它是可能的。

关于c# - C#中的动态类创建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2698619/

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