Thursday, October 8, 2009

Arraylist and GenericList

Arraylist
----------
using System.Collections;
ArrayList ContentList = new ArrayList();

Genericlist
---------------
using System.Collections.Generic;
List<string> ContentList = new List<string>();

//find the a item
ContentList[ContentList.IndexOf("Yellow")] = "Black";


Find Difference between Arraylist and Genericlist refer the link

No comments:

Post a Comment