12345678_0001
Demo:var dic = new Dictionary<string, int>()
{
{"a",1},
{"b",2},
{"c",3},
{"d",1}
};foreach (var item in dic)
{ if (item.Value == 1)
{
Console.WriteLine(item.Key);
}
}