所以我有Dictionary
这样:
var dictionary = new Dictionary<int,string>();
dictionary.Add(10,"Element 1");
dictionary.Add(20, "Element 2");
dictionary.Add(35, "Element 3");
现在我想获得密钥为index
20
最初我想:
dictionary.Keys.IndexOf(20);
但显然这不存在。我正在寻找可能的事情吗?
澄清:我不想返回密钥为Value
的{{1}}(“元素2”)而是我想根据其中的20
返回插入了项目,即key = Index
,索引为20