Implements the IList interface using an array whose size is dynamically increased as required. The capacity of an ArrayList is the number of elements the list can hold.
Author: Microsoft Support Code: ASP.NET v1.0 & VB
Symptoms: A Microsoft ASP.NET application crashes with an access violation in mscorsvr!ArrayList::GetPtr when the application is running on a computer with multiple processors and is using the ArrayList class. Author: Microsoft Code: ASP.NET v2.0
AutoSortArrayList maintains a list that is always sorted and can prevent duplicates. It is derived from ArrayList. (.Net's SortedList class does the same but requires a Key.) Code: ASP.NET v1.0
AutoSortArrayList fills a gap in the various collection classes offered within the Microsoft.NET framework. It maintains a list that is always sorted. The list does not use a key to identify each instance.
Code: ASP.NET v1.0 & C#
We all know about ArrayList and its functionlity, it is the dynamic array of the .Net Framework, where you can add, delete, search & sort objects in it. The issue we will descuss in this article is Sorting ArrayList.