Convert ArrayList to string[] C# Curt Sahd Read more posts by this author. Curt Sahd 15 May 2013 • 1 min read Some quick and simple code to convert an ArrayList to a string array in C# [box] string[] stringArray = (string[])arrayList.ToArray(typeof(string));[/box]