gpt4 book ai didi

c# - 从 Hashtable 读取 SortedList

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

当我在 Hashtable 中有这个结构时,如何从 SortedList 中读取值?

下面是例子

public SortedList sl = new SortedList();
sl[test] = 1;
Hashtable ht= new Hashtable();
ht.Add("root", sl);

我想阅读sl[test]

最佳答案

你只需做相反的事情:

SortedList sortedList = (SortedList)ht["root"];

object value = sortedList[test];

关于c# - 从 Hashtable 读取 SortedList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23843178/

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