Possible Duplicate:
Comparing Arrays in C#
I have a two string arrays:
string[] a;
string[] b;
How can I identify how many (and what) items of a are not present in b? As I am using .NET 2.0 so I can’t use linq.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just enumerate items in both
aandb, just like in the old days: