Is there a short way of converting a strongly typed List to an Array of the same type, e.g.: List to MyClass[]
List
MyClass[]
Try using
MyClass[] myArray = list.ToArray();