Hi
Can any one tell me what is specilized Collections in .net where is the need of specilized Collections....?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sandeep ShekhawatPosted Jun 28, 2011, 8:37 AM
http://www.codeproject.com/KB/collections/BasicsOfDotNetCollections.aspx
Jaganathan BantheswaranPosted Jun 28, 2011, 8:28 AM
In System.Collections.Specialized:
HybridDictionary - A hybrid data structure that uses a ListDictionary if the list is small and a HashTable if the list is larger.
ListDictionary - A linked list data structure. It is good for small collections (usually below 10 elements).
NameValueCollection - A key/value pair collection for strings.
StringCollection - A collection of strings.
StringDictionary - A HashTable that is strongly typed for strings.