.NET Tricks, Tips, and Snippets
Dictionary<string, XXX> m_MyDictionary = new Dictionary<string, XXX>() foreach (KeyValuePair kvp in m_MyDictionary) { DoSomething(kvp.Key); DoSomethingElse(kvp.Value); }
Post a Comment
No comments:
Post a Comment