Using the .NET Collection Classes
by Kevin Marshall This tutorial which is the first part of a 2 part series will give an introduction to the Collection classes built-into the .NET Frameworks System.Collections namespace; these classes are used to hold collections of values or objects in memory and are commonly known as arrays. The three commonly used collection classes are ArrayList, Hashtable and SortedList, this tutorial will serve as an introduction to these classes. An example use for these collection classes could be to store user specific data in a collection class that can itself be stored in a session variable allowing data to be shared easily across multiple pages.
0 reviews available
$3.39 USD | User Level: | Beginner |
|---|
| Product: | Visual Studio.NET, Web Matrix, CSharp Editor, Dreamweaver MX, Borland C# |
|---|
| Technologies: | .NET |
|---|
| Number Of Pages: | 18 |
This tutorial will cover the following topics:
- An introduction to the System.Collections Classes
- An introduction to ArrayList
- Example of ArrayList in action
- An introduction to Hashtable
- Example of Hashtable in action
- An introduction to SortedList
- Example of SortedList in action