gpt4 book ai didi

c# - ExpandoObject 或字典的简写版本?

转载 作者:太空狗 更新时间:2023-10-29 22:16:54 28 4
gpt4 key购买 nike

我真的很喜欢匿名类型语法。例如

 new {a = 1, b = 2, c = 25.2}

如果 Expando 或 Dictionary 有这样的版本就好了。有办法吗?

最佳答案

你可以这样做

Dictionary<string, object> dict = 
new Dictionary<string, object> { { "a", "foo" }, { "b", 1 } };

另请注意,您可以这样做

var O = new { A = "foo", B = 12 };

关于c# - ExpandoObject 或字典的简写版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8633571/

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