[Solved] How can i sort two integer arrays parallel with quick sort in C#?


Sort both of these “simultaneously”.

System.Threading.Tasks.Task.Run(() => quick_sort(a1,0,100));
System.Threading.Tasks.Task.Run(() => quick_sort(a2,0,100));

solved How can i sort two integer arrays parallel with quick sort in C#?