gpt4 book ai didi

c# - 我可以为 Dictionary 条目使用集合初始值设定项吗?

转载 作者:IT王子 更新时间:2023-10-29 03:36:34 26 4
gpt4 key购买 nike

我想为下一段代码使用集合初始值设定项:

public Dictionary<int, string> GetNames()
{
Dictionary<int, string> names = new Dictionary<int, string>();
names.Add(1, "Adam");
names.Add(2, "Bart");
names.Add(3, "Charlie");
return names;
}

所以通常它应该是这样的:

return new Dictionary<int, string>
{
1, "Adam",
2, "Bart"
...

但是正确的语法是什么?

最佳答案

var names = new Dictionary<int, string> {
{ 1, "Adam" },
{ 2, "Bart" },
{ 3, "Charlie" }
};

关于c# - 我可以为 Dictionary<TKey, TValue> 条目使用集合初始值设定项吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/495038/

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