How can I convert ArrayList into string[] in C#?
ArrayList
string[]
You can use CopyTo method of ArrayList object.
Let's say that we have an arraylist, which has String Type as Elements.
strArrayList.CopyTo(strArray)