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[]
List list = new List(); int[] intList = list.ToArray();
is it your solution?