我有一本看起来像这样的字典:
Dictionary<string, List<string>> dict = new Dictionary<string, List<string>>()
{
{"a" , new List<string> { "Red","Yellow"} },
{"b" , new List<string> { "Blue","Red"} },
{"c" , new List<string> { "Green","Orange"} },
{"d" , new List<string> { "Black","Green"} },
};
我需要作为字典输出,dict其中的公共值List<string>应该是键,值应该是键列表。
例如:
Red: [a,b]
Green: [c,d]
我不知道如何用listin dictionaryas解决这个问题TValue。
请解释我如何处理字典中的列表。
杨__羊羊
墨色风雨
相关分类