How to merger ListOne and ListTwo below.
For instance, if one list contains:
List
"Bob"
"Bill"
"Fred"
"Jim"
and another list contains:
List
"Bob"
"Fred"
the result will be:
"Bill"
"Jim"
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Apr 5, 2012, 1:20 PM
foreach(string s in ListThree) Console.WriteLine(s);