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
Loading
VulpesPosted Dec 24, 2013, 9:39 AM
Sunny SharmaPosted Dec 24, 2013, 9:25 AM