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

[ad_1]

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));

[ad_2]

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