Let say I have,
class A
{
string[] values;
}
class B
{
string[] values;
}
and I have 2 object,
var a= new A{ values ={"a","b","c"}}
var b= new A{ values ={"b","c"}}
How do I make sure that all values of B should exist in A.values in efficient way?