August 2008
Intermediate to advanced
880 pages
18h 35m
English
CHAPTER 14 COVERED standard query operators, a set of extension methods on IEnumerable<T> that added a common set of methods to all collections. However, this did not make all collections the same. There is still a strong need for different collection types. Some collections are better suited to searching by key, whereas others are better suited to index retrieval. Similarly, some collections follow a queue behavior of first in, first out, whereas others are more like a stack, as in last in, last out. The .NET Framework contains a plethora of different collections suited for the vast array of scenarios in which collections are needed. This chapter provides an introduction to many of these collections, along with ...