gpt4 book ai didi

c# - 使用字符串查找 C# 字典

转载 作者:行者123 更新时间:2023-11-30 20:02:48 25 4
gpt4 key购买 nike

我想通过使用字符串来查找字典,以便将其复制到新字典中——看起来应该很简单,但我不确定语法。

基本上就是:

    // the object's myName corresponds to an existing dictionary
string stringdic = myName;

// here's where I try to create a new dictionary containing the values of the existing dictionary
Dictionary<string, int> mySkills = new Dictionary<string, int>(myName);

这里的目标只是创建一个以给定字符串作为其“名称”的对象,并根据名称知道它应该使用一组字典中的哪一个——例如,如果 myName = Bob,我想访问此脚本中的字典 Bob。

因此,其他一些引用预先存在的字典来获取其键/值的方法也可以工作。速度不是大问题,但我想保持代码简单。谢谢!

最佳答案

这里是你如何做一个字典的字典:

var persons = new Dictionary<string, Dictionary<string, int>>
{
{ "Jeremy", new Dictionary<string, int> { { "age", 20 }, { "height_cm", 180 } } },
{ "Evan", new Dictionary<string, int> { { "age", 18 }, { "height_cm", 167 } } },
};

Dictionary<string, int> x = persons["Jeremy"];
x["age"] = 34;

关于c# - 使用字符串查找 C# 字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16290717/

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