ASP.NET List
The Collection classes form a cohesive set of classes carefully crafted to facilitate the grouping and manipulation of objects. These classes are specifically designed to handle common tasks performed on collections, offering a wide range of functionality and versatility.
The core capabilities of collection classes revolve around fundamental operations such as adding elements to the collection, removing elements from the collection, and obtaining the count or number of elements present within the collection. These operations provide the foundation for managing and manipulating collections effectively.
One notable member of the Collection classes is the List class, which resides within the System.Collections.Generic namespace. The List < T > class in C# represents a specialized form of collection that can store objects of a specific type in a strongly typed manner. It provides a powerful and efficient means of organizing a list of objects that can be accessed using an index.
The elements within a List < T > instance can be conveniently accessed using an integer-based index. The indices within this collection are zero-based, meaning the first element in the list is accessed using an index of zero, the second element with an index of one, and so on. This indexing system offers a straightforward and intuitive way to retrieve and manipulate elements within the List.
By utilizing the List < T > class and other collection classes, developers can utilize the full potential of grouping objects and performing operations on them efficiently. These classes offer a comprehensive set of features and methods, making them indispensable tools for managing and manipulating collections in a type-safe and organized manner.
List < T >The parameter T is the type of elements in the list.
Add items in List collection ?
Add Integer values in the List collection
C#Add String values in the List
C#Obtaining the number of elements in a List ?
You can use "count" property to know the number of items in the List collection
months.Count
Retrieve items from List ?
You can retrieve items from List collection using for loops.
foreach loop
C#for loop
C#Insert an item in the List ?
You can insert an item in the List by specify its index value like (index,item) .
months.Insert(2, "March");
In the above code the month "March" inserted in the index position 2.
Remove an item from List collection ?
Remove() can use to remove item from List collection.
months.Remove("March");
Check if an item contains in the List collection ?
You can use List.Contains() methods to check an item exists in the List
C#Copy an Array to a List collection ?
C#Finally clear method remove all the items from List collection.
List.Clear ();
The following program shows some operations in List collections.
Default.aspx