c# modify dictionary in loop

77

c# modify dictionary in loop -

List<string> keys = new List<string>(colStates.Keys);
foreach(string key in keys)
{
    colStates[key] +=  4;   
}

Comments

Submit
0 Comments