我已经看到了几种不同的方法来迭代C#中的字典。有没有标准的方法?
foreach(KeyValuePair<string, string> entry in myDictionary) { // do something with entry.Value or entry.Key }