//Constructor for empty sortedArray public sortedArray(int MAX_SIZE) { array = new student[MAX_SIZE]; size = 0; }
//Constructor for empty unsorted array public unSortedArray(int MAX_SIZE) { array = new student[MAX_SIZE]; // Create standard c# array to hold our unSortedArry type size = 0; // Inital size of unSortedArray is zero }