Posted in General Convert ArrayList to string[] C# Posted byby Curt Sahd 2 years ago 0 Comments Some quick and simple code to convert an ArrayList to a string array in C# [box] string[] stringArray = (string[])arrayList.ToArray(typeof(string));[/box]