public void BubbleSorting() { var nums = new int[] { 100, 200, 29, 8, 20, 1, 3 }; nums = ArrayProblem.BubbleSort(nums); }