The .NET Framework has two collections that will guarantee your items are always sorted whenever you process the collection. Here's how to choose between the two and how to control the sort order ...
We start with how sorting algorithms work. Although you don’t need to implement sorting algorithms yourself, it’s useful to know how they work internally. You can skip to the next section if you just ...
Collections provide a way to store arbitrary objects in a structured fashion, and we all know how useful they are in everyday programming. The .NET class library offers an embarrassment of collection ...