Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
Home
C# / C Sharp
2D Graphics
Class Interface
Collections Data Structure
Components
Data Types
Database ADO.net
Date Time
Design Patterns
Development Class
Event
File Stream
Generics
GUI Windows Form
Internationalization I18N
Language Basics
LINQ
Network
Office
Reflection
Regular Expressions
Security
Services Event
Thread
Web Services
Windows
Windows Presentation Foundation
XML
XML LINQ
ListDictionary « Collections Data Structure « C# / C Sharp
C# / C Sharp
Collections Data Structure
ListDictionary
1.
ListDictionary Class implements IDictionary using a singly linked list
2.
Display the contents of the collection using foreach. This is the preferred method
3.
Display the contents of the collection using the enumerator
4.
Displays the elements using the Keys, Values, Count, and Item properties
5.
Copies the ListDictionary to an array with DictionaryEntry elements
6.
Searches for a key
7.
Deletes a key
8.
Adds an entry with the specified key and value into the ListDictionary.
9.
Determines whether the ListDictionary contains a specific key.