...

/

Generic List

Generic List

Learn about the generic counterpart of the ArrayList class.

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 ...