djdelaney
11/27/2016 - 4:40 AM

C# dictionary iterator

C# dictionary iterator

foreach(KeyValuePair<string, string> entry in myDic)
{
    // do something with entry.Value or entry.Key
}