Şekil 1
Şekil 2
private void button1_Click(object sender, EventArgs e)
{
string[] myArray = new string[listBox1.Items.Count];
for (int i = 0; i < listBox1.Items.Count; i++)
myArray[i] = listBox1.Items[i].ToString();
Array.Sort(myArray);
Array.Reverse(myArray);
listBox1.Items.Clear();
foreach (string str in myArray)
{
if (str != null)
listBox1.Items.Add(str);
}
}
//Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN
0 comments:
Yorum Gönder