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
Thursday, October 8, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment