Generic collections under .NET 2.0
[50 mn of reading - published 5/19/2006 11:20:25 AM - Target : Confirmé]
|
   
|
Author
Summary
In this article, we will see the generic collections introduced with new framework .NET 2.0. It is the namespace System.Collections.Generic which contains the interfaces and classes which define generic collections allowing the users to create strongly typified collections. We will see in this article the various generic collections proposed by the framework 2.0 (dictionaries, lists, stack, etc.) through clear explanations accompanied by example.
Sommaire
- Introduction
- 1 Dictionary
- 1.1 Introduction
- 1.2 Dictionary
- 1.3 SortedDictionary
- 1.4 SortedList
- 1.5 Other collections of the type “dictionary”
- 2 The Queue and Stack
- 3 List
- 3.1 Introduction
- 3.2 IList Interface
- 3.3 Basic handling of List
- 3.4 Capacity
- 3.5 Use of the delegations
- 3.6 Use of the predicates (Predicate)
- 3.7 Sorts
- 4 LinkedList
- 4.1 Introduction
- 4.2 LinkedListNode
- 4.3 Handling
- Conclusion
|