A list is a collection of items that can be accessed by index and provides functionality to search, sort and manipulate list items. The List<T> class defined in the System.Collections.Generic namespace is a generic class and can store any data types to create a list.
This book discusses the following topics:
  • How to create a List
  • How to add items to a List
  • How to remove, sort, and search a list items
  • and more