gpt4 book ai didi

c# - 初始化字典>

转载 作者:太空狗 更新时间:2023-10-29 20:59:00 53 4
gpt4 key购买 nike

我想知道如何声明/初始化字典?下面一个给出了错误。

Dictionary<string, List<string>> myD = new Dictionary<string, List<string>>()
{
{"tab1", MyList }
};

List <string> MyList = new List<string>() { "1" };

错误是:字段初始值设定项不能引用非静态字段、方法或属性 MyList。它不是在字典之前或之后出现的列表声明。

最佳答案

class MyClass
{
Dictionary<string, List<string>> myD = new Dictionary<string, List<string>>()
{
{"tab1", new List<string> { "1" } },
{"tab2", new List<string> { "1","2","3" } },
{"tab3", new List<string> { "one","two" } }
};
}

关于c# - 初始化字典<string, List<string>>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14472245/

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