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
Sin Yee
NA
145
74.8k
Intersection for Two List problem
Mar 30 2011 6:07 AM
Hi...i am trying doing the intersection between two List. but, i tried many times still cannot get it. Hope someone can help me...
Here is the coding.
List<KeyValuePair<String, int>> L = new List<KeyValuePair<String, int>>(sItem.ToList());
L.Reverse();
L.Sort(delegate(KeyValuePair<String, int> lhs, KeyValuePair<String, int> rhs)
{ return rhs.Value.CompareTo(lhs.Value); });
foreach (KeyValuePair<String,int> val in L)
{
show3 += val.Key+"\r\n";
}
MessageBox.Show(show3.ToString());
List<KeyValuePair<String, int>> P = new List<KeyValuePair<String, int>>(itemS.ToList());
foreach (KeyValuePair<String, int> pair in P)
{
show4 += pair.Key+"\r\n";
}
MessageBox.Show(show4.ToString());
Reply
Answers (
12
)
Copy and past a MDF LDF files
compare 2 keys to get value