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);