|
as follows:
ArrayList al = new ArrayList ();
al.Add ("lei");
al.Add ("wanglei");
al.Add ("wanghao");
al.Add ("wanglei");
al.Add ("wanghao");
If I want to remove the duplicates inside, what should I do? Note that the number of values in al is uncertain! ~ |
|