TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
samanta
NA
429
135.2k
Sort Array
Dec 24 2013 1:46 AM
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
Reply
Answers (
2
)
Divide data from one Datatable to two?
How to create TextBoxes on Button Click using ASP.Net,C#