/ Published in: C#
Working with System.Collections.Generic.Dictionary
Expand |
Embed | Plain Text
using System.Collections.Generic; // create // fill MyDictionary.Add(1, true); // iterate foreach (KeyValuePair<int, bool> dictitem in MyDictionary) { if (dictitem.Key == 1) // ... } }
You need to login to post a comment.
