Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.66K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for Behseini

public Form1() { InitializeComponent(); var list1 = listBox1.Items.OfType<string>(); var list2 = listBox2.Items.OfType<string>(); IEnumerable<string> Intersect = list1.Intersect(list2); IEnumerable<string> Difference = list1.Except(list2); listBox3.Items.AddRange(Intersect.ToArray()); listBox4.Items.AddRange(Difference.ToArray()); }

Member Avatar for mtns
0
2K

The End.