i want to do set operations on arrays like below sample in c# 2.0
string[] test ={ "Hello", "world", "!" };
string[] test1 ={"Hello","there","." };
kind of test INTERSECT test1 and get result "Hello"
any suggestion will be appreciated.
thank you.
Start Free Trial