Programming List with C#

Mahesh Chand

A list is a collection of items that can be accessed by index and provides functionality to search, sort and manipulate list items. This book is a tutorial of how to use and work with Lists using C# language.

  • Published on Jul 05 2012
  • Pages 12
  • Downloaded 34.2k
  • Type PDF
Download
 
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