예제 #1
0
    public static void Main()
    {
        MyQuickSort <int> iSort = new MyQuickSort <int>(new int[] { 2, 1, 3 });

        iSort.Sort();
    }