The SortedList Class
Represents a collection of key-and-value pairs that are sorted by the keys and are accessible by key and by index.
Author: Microsoft Support Code: ASP.NET v1.0 & VB
In this article I will try to explain you how you can use HashTable and SortedList in Microsoft .Net Framework 2.0. In this sample application I have simply used the HashTable class object and SortedList class object to display books detail on the... Author: Faraz Code: ASP.NET v2.0 & VB
This is a simple ASP.NET example from Chris Garrett of using a SortedList to display all the web safe HTML values. Author: Chris Garrett Code: ASP.NET v2.0 & VB
The SortedList object contains items in key/value pairs. A SortedList object automatically sort the items in alphabetic or numeric order. Items are added to the SortedList with the Add() method.
Author: w3schools.com Code: ASP.NET v1.0 & VB