Sort array
Microsoft .NET Framework, ASP.NET, Visual C# (CSharp, C Sharp, C-Sharp) Developer Training, Visual Studio
| C# Code Snippets |
| See also |
| edit |
This C# code snippet sorts the elements of an array into ascending order.
using System; public class ReverseArraySort { public static void Main() { string[] strings = {"beta", "alpha", "gamma"}; Console.WriteLine ("Array elements: "); DisplayArray (strings); Array.Sort (strings); // Sort elements DisplayArray (strings); } public static void DisplayArray (Array array) { foreach (object o in array) { Console.Write ("{0} ", o); } Console.WriteLine(); } }
| Array.Clone example (program output) |
| Array elements: beta alpha gamma alpha beta gamma |