2
Answers

Sort Array

samanta

samanta

10y
1k
1


i have function like this

int count = ListBox1.Items.Count;
string[,] vta = new string[2, count];


for(int i = 0; i < count; i++)
{
   vta[0,i] = ListBox1.Items[i].Value;
   vta[1,i] = ListBox1.Items[i].Text;
}

how to sort this 2D array. Please anyone help

Answers (2)