votes
How do I set a negative number to index of array in C# ?
Hello everybody, I'm newbie in C#, and I've been doing algorithm about Shell Sort in C#. This is my code [CODE] static void shellSort(int[] group, int[] h) { int step, i, j, x, len, n, k; n = gro ...
