| ||||||||||||||||||||||||||||||||||
IDictionary InterfaceRepresents a collection of key-and-value pairs.
RemarksThe IDictionary class is the base interface for collections of key-and-value pairs. Each element is a key-and-value pair stored in a DictionaryEntry object.
The IDictionary interface allows the contained keys and values to be enumerated, but it does not imply any particular sort order. IDictionary implementations fall into three categories: read-only, fixed-size, variable-size.
The foreach statement of the C# language (for each ...next in Visual Basic) requires the type of each element in the collection. Since each element of a collection based on IDictionary is a key-and-value pair, the element type is not the type of the key or the type of the value. Instead, the element type is DictionaryEntry. For example:
|
| |||||||||||||||||||||||||||||||||
Check out related books at Amazon
© 2000-2008 Rey Nuñez All rights reserved.
If you have any question, comment or suggestion
about this site, please send us a note
You can help support aspxtreme