Hits Today: 2 Total: 5875 | Updated: 11/2/2002 | |
 | 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 |
Hits Today: 1 Total: 636 | Updated: 11/20/2005 | |
 | 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 |
Hits Today: 1 Total: 1044 | Updated: 10/14/2003 | |
 | 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# | |  | |
Hits Today: 1 Total: 1645 | Updated: 6/19/2002 | |
 | 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 |
Hits Today: 1 Total: 2025 | Updated: 7/8/2004 | |
 | 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. |
Hits Today: 2 Total: 52 | Updated: 8/27/2008 | |
 | Following example is about to usage of ArrayList object. To use ArrayList in your applications, you should import System.Collections namespace. IList interface dynamically increase and decrease array. So you do not worry about array size.
Author: Dotnetindex.com Code: ASP.NET v3.5 & C# | |  | |
|