Thursday, March 22, 2018

List<T> in C#

List
  • Lists are strongly typed generic collections.
  • They will store values of different or same datatype.
  • List size will increase or decrease dynamically.
  •  Its defined in the System.Collections.Generic namespace
      Add item in List :

No comments:

Post a Comment

Hash Table in C#

 The Hashtable is a non-generic collection and used to store the key/value pairs based on the hash code of the key. Key will be used to acce...