Rozdział 2

Kolekcje, enumeratory i iteratory

2.0 Wprowadzenie

Kolekcje są grupami obiektów, z których każdy nazywany jest elementem. Niektóre kolekcje zwyczajnie grupują w sobie elementy, podczas gdy inne (np. słowniki) zawierają pary klucz/wartość. Poniższe kolekcje zawierają proste listy elementów:

System.Collections.ArrayList System.Collections.BitArray System.Collections.Queue System.Collections.Stack System.Collections.Generic.LinkedList<T> System.Collections.Generic.List<T> System.Collections.Generic.Queue<T> System.Collections.Generic.Stack<T> System.Collections.Generic.HashSet<T>

Tu natomiast mamy kilka przykładów słowników:

System.Collections.Hashtable System.Collections.SortedList System.Collections.Generic.Dictionary<T,U> System.Collections.Generic.SortedList<T,U> ...

Get C# 6.0 – Księga Przepisów now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.