使用Array的Sort()方法对数组进行排序

来看看排序吧

using System;
using System.Collections.Generic;
using System.Text;

namespace ljun_CSharp_Study
{
    class ArraySort
    {
        ///


        /// 使用Array的Sort()方法对数组进行排序
        ///

        ///
        static void Main(string[] args)
        {
            int[] myArray = new int[8] { 13, 27, 46, 25, 56, 67, 35, 58 };

            //排序前的数组
            Console.WriteLine("数组排序前为:");
            foreach (int number in myArray)
            {
                Console.WriteLine(number);
            }
            Console.WriteLine("/n");

            //从数组中索引为1的元素开始的3个元素进行排序
            Array.Sort(myArray, 1, 3);
            Console.WriteLine("从数组中索引为1的元素开始的3个元素进行排序后的数组为:");
            foreach (int num in myArray)
            {
                Console.WriteLine(num);
            }
            Console.WriteLine("/n");

            //对数组中所有元素进行排序
            Array.Sort(myArray);
            Console.WriteLine("对数组中所有元素进行排序后的数组为:");
            foreach (int i in myArray)
            {
                Console.WriteLine(i);
            }

            Console.ReadLine();
        }
    }
}
 

你可能感兴趣的:(C#)