C# Programming Language: SortedList
Hi everyone, welcome back. In this tutorial, we will be going over SortedLists in C#. SortedLists can be used to store a collection of data, similar to that of a normal list. The main difference is that the SortedLists stores elements as key/value pairs as an alternative to using index numbers. The keys must be unique and cannot be null. The values can be duplicates or be null. With this introduction out of the way, let’s get into it.
