Thread: ArrayLists
View Single Post
Old Nov 9th, 2006, 2:03 PM   #4
Iftikhar
Programmer
 
Iftikhar's Avatar
 
Join Date: Oct 2006
Location: London
Posts: 40
Rep Power: 0 Iftikhar is on a distinguished road
Send a message via MSN to Iftikhar
You can convert striung to charcters array as suggested by xavier like this
[code]
char [] chrArray = strBiologyStuff.ToCharArray();
[\code]
Then still you want each chracter in arrayList then you can loop throught this array list using
foreach(char chr in chrArray)
 arrList.Add(chr);
__________________
Iftikhar Ahmed Khan
For doing an experiment on programmer's mood please visit http://uxisfyp1.brunel.ac.uk/cspgiak
Iftikhar is offline   Reply With Quote