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[]
One possible solution to avoid, which uses multiple CPU cores and expected to go faster, yet it performs about 5X slower:
list.AsParallel().ToArray();