December 28, 2021December 29, 2021Convert ArrayList to string[] C# General by Curt Sahd Some quick and simple code to convert an ArrayList to a string array in C# [box] string[] stringArray = (string[])arrayList.ToArray(typeof(string));[/box]