Now use the following code on button cliick.
//Method that Sort the List
Array.Sort(myArray);
//Sets the Text to Null
TextBox1.Text = string.Empty;
//Displays the Sorted list
Label1.Text = "Sorted Array List";
foreach (string arrayStr in myArray)
{
TextBox1.Text += arrayStr + Constants.vbCrLf;
}