可能重复:
如何从字典中获取第 n 个元素?
我必须从字典中获取键名。 如何从字典中获取第 n 个元素?补救措施不是。
Dictionary<string, string> ListDegree= new Dictionary<string,int>();
ListDegree.Add( 'ali', 49);
ListDegree.Add( 'veli', 50);
我想得到带有索引的“ali”。以下代码获取值“324”。我该怎么办?
int i=-1;
foreach (var item in ListDegree)
{
i++;
}
if (i == -1)
mf.txtLog.AppendText("Error: \"Code = 1\"");
else
mf.txtLog.AppendText("Error: \""+ListDegree[ListDegree.Keys.ToList()
[i]].ToString()+"\"");