C#, a String's Split() method, how can I put the resulting string[] into an ArrayList or Stack?
|
1
|
|
|
|
|
|
You can initialize a List with an array (or any other object that implements IEnumerable). You should prefer the strongly typed List over ArrayList.
|
||
|
|
|
If you want a re-usable method, you could write an extension method.
|
||||||||||
|
|
|
|
||||
|
|
|
Or if you insist on an ArrayList or Stack
|
||
|
|
