Wednesday, March 19, 2014

Loop through the contents of a C# dictionary.

foreach(KeyValuePair<Guid, string> values in personInModel.Home)
{

...as suggested here is the trick.

No comments:

Post a Comment