Convert ArrayList to string[] C#

Some quick and simple code to convert an ArrayList to a string array in C#

[box] string[] stringArray = (string[])arrayList.ToArray(typeof(string));[/box]

"Turkey