Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
2
Answers
Sort Array
samanta
10y
1k
1
Reply
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
Post
Reset
Cancel
Answers (
2
)
Next Recommended Forum
Divide data from one Datatable to two?
How to create TextBoxes on Button Click using ASP.Net,C#