How can I convert ArrayList into string[] in C#?
ArrayList
string[]
A simple Google or search on MSDN would have done it. Here:
ArrayList myAL = new ArrayList(); // Add stuff to the ArrayList. String[] myArr = (String[]) myAL.ToArray( typeof( string ) );