private void button2_Click(object sender, EventArgs e) { string[] testData= {"a","c","b" }; Array.Sort(testData); foreach (string s in testData) { MessageBox.Show(s); } }
Login to post response