R
Rene \(Programmer Wannabe\)
Why do I have to resort to using the static method of the array like this:
int[] someArray = new int[3];
Array.Sort(someArray);
Why wasn't the Sort method for the array implemented like this:
int[] someArray = new int[3];
someArray.Sort();
Thank you.
int[] someArray = new int[3];
Array.Sort(someArray);
Why wasn't the Sort method for the array implemented like this:
int[] someArray = new int[3];
someArray.Sort();
Thank you.