I have an array of strings. How can I convert it to System.Collections.ArrayList?
Just use ArrayList's constructor:
var a = new string[100]; var b = new ArrayList(a);
1.4m articles
1.4m replys
5 comments
57.0k users