DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
How To Sort Char Array
This example uses a character array of three chars and then calls Array.Sort on it to sort it in-place. Then, it loops through all the characters and displays the elements in their new, alphabetical order.
using System;
class Program
{
static void Main()
{
char[] array = { 'y', 'n', 'a' }; // Input array.
Array.Sort<char>(array); // Sort array.
foreach (var c in array) Console.WriteLine(c);
}
}
//Output
// a
// n
// y
<a href="http://www.java-forums.org/blogs/eclipse-ide/"><strong>Eclipse IDE</strong></a> and <a href="http://www.java-forums.org/blogs/eclipse/"><strong>Eclipse</strong></a>





