如何获取字典中的键索引?

时间:2016-02-10 14:11:18

标签: c# dictionary

所以我有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

0 个答案:

没有答案