Sorting multiple arrays c#
问题 currently I'm working on a project where i'm required to sort a total of 6 arrays. I've managed to sort the arrays individually using a quicksort, however, I'm just wondering if there is a way to sort 1 array and reflect that on the order of elements in the other arrays. For example, if I sort my date array to an ascending order, I want the other arrays to still match up with the dates in respect to the new order. If possible, could this still be done through a quick sort? 回答1: Likely you