C#, a String\'s Split() method, how can I put the resulting string[] into an ArrayList or Stack?
string[] strs = "Hello,You".Split(','); ArrayList al = new ArrayList(); al.AddRange(strs);