c# sort function code example
Example 1: array sort c#
Array.Sort(myArray);
Example 2: c# sort array
Array.Sort(arr);
Example 3: c# sort list
using System;
class Program
{
static void Main()
{
string[] colors = new string[]
{
"orange",
"blue",
"yellow",
"aqua",
"red"
};
// Call Array.Sort method.
Array.Sort(colors);
foreach (string color in colors)
{
Console.WriteLine(color);
}
}
}