What are collection objects in VB.net ?
3009
28-Mar-2011
Amit Singh
28-Mar-2011- Add: This method adds a member to collection. Along with data one can also specify a key value by which the data can be referenced.
- Count: This returns the total number of items in the collection object.
- Item: Retrieves an item from the collection. An item can be retrieved either using the index or a key if specified.
- Remove: Removes an item from the collection.