System.Collections.Specialized contains StringDictionary
http://msdn.microsoft.com/en-us/library/system.collections.specialized.stringdictionary.aspx#Y1626
What’s difference with Strong Typed Dictionary in Generics?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
StringDictionarycomes from .Net 1, which predates generics.Therefore, unlike
Dictionary<String, String>, it doesn’t implement any generic interfaces, so it cannot be used with LINQ (unless youCast())Also,
StringDictionarynormalizes all keys to lowercase.(To make a case-insensitive
Dictionary<String, String>, passStringComparer.OrdinalIgnoreCase; this is also more compatible with Turkey)