1/* 2 Convert ArrayList to string[] 3 - 4 Given an ArrayList of strings, here's how to convert it to a string array: 5*/ 6 7string[] srtArray = arrList.ToArray(Type.GetType("System.String")) as string[];