Perhaps you can use the extension method to add a sort function as a member of an instance of type Array.
public static class ArrayExtension { public static void Sort(this Array array) { Array.Sort(array); } }
Example
int [] arr = new int[]{1,2,3,4,5}; arr.Sort();
DISCLAIMER: I have not compiled or tried this, but I am sure that it will work.
source share