I have four arrays array_1, array_2, array_3, array_4.
array_2,array_3,array_4 shall be sorted according to array_1.
When I just sort array_2 according to array_1 it is working.
Array.Sort(array_1, array_2);
But when I try this just array_2 is being sorted (or just the array that is sorted in the first line). array_3 and array_4 remain the same.
Array.Sort(array_1, array_2);
Array.Sort(array_1, array_3);
Array.Sort(array_1, array_4);
Is there a possibility to sort multiple arrays according to one reference array, at the same time?