List collection class in C sharp Arabic #73
Suggested Videos
❑ List collection class in C#.
List is one of the generic collection classes present in System.Collections.Generic Namespcae .There are several generic collection classes in System.Collections.Generic Namespcae as listed below.
1-Dictionary –Discussed in Parts 71&72
2-List.
3-Stack.
4-Queue etc..
A list class can be used to create a collection of any type.
for example , we can create a list of integers, strings and even complex types.
The objects stored in the list can be accessed by index.
Unlike arrays , lists can grow in size automatically.
The class also provides methods to search, sort and manipulate lists.
Tags:
C sharp