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
Farhan Shariff
NA
933
241.3k
Finding Repeated Values in List String
May 16 2014 11:12 AM
I want to check if there are repeated values in the List and if there are any then display print in a txt file
List<String> Die_ID_refrence = new List<String>();
//List stores All Die_ID from t0 sheet
for (int a = 0; a < table5.Rows.Count; a++)
{
Die_ID_refrence.Add(table5.Rows[a]["Die_ID"].ToString());
}
Reply
Answers (
1
)
usage of Parallel.For
Stacks and Queues