views:

378

answers:

1

Is there any easy way to remove the contents of one array from another?

+2  A: 

If you have LINQ

array.Except(array2);
Sam Saffron