C#如何让数组逆序排列

C#如何让数组逆序排列


POPMUISE
浏览 498回答 4
4回答

呼唤远方

int[] a = new int[6] { 1, 8, 3, 4, 5, 7 };Array.Reverse(a);//倒序Array.Sort(a);//排列从小到大foreach (var item in a){Console.WriteLine(item);}

人到中年有点甜

Array是抽象类,提供了很多静态方法,供各种数组使用:public static void Test(){int[] array = { 0, 1, 2, 3, 4 };Array.Reverse(array);}一试便知。
打开App,查看更多内容
随时随地看视频慕课网APP