Return to Snippet

Revision: 31576
at September 9, 2010 04:00 by tclancy


Initial Code
foreach( KeyValuePair<string, string> kvp in openWith )
{
        Console.WriteLine("Key = {0}, Value = {1}", 
            kvp.Key, kvp.Value);
}

Initial URL
http://stackoverflow.com/questions/141088/what-is-the-best-way-to-iterate-over-a-dictionary-in-c

Initial Description


Initial Title
Loop Over C# Dictionary

Initial Tags


Initial Language
C#