Generic List
Learn about the generic counterpart of the ArrayList class.
We'll cover the following...
Introduction
The ArrayList
class solved the issues we had with arrays, but it also introduced new issues. .NET developers addressed the concerns with a set of generic collection classes. This lesson focuses on the List<T>
class. Instead of using ...