I\'ve seen a few different ways to iterate over a dictionary in C#. Is there a standard way?
var dictionary = new Dictionary { { "Key", 12 } }; var aggregateObjectCollection = dictionary.Select( entry => new AggregateObject(entry.Key, entry.Value));