I've seen a few different ways to iterate over a dictionary in C#. Is there a standard way?
Answer
foreach(KeyValuePair entry in myDictionary)
{
// do something with entry.Value or entry.Key
}
Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...
No comments:
Post a Comment