I have a character array char[] a_chA that contains elements i don't want.
The elements i don't want are in some more character arrays in a list List<char[]> l_a_chB.
I would like to remove all the unwanted elements using linq, but i can't seem to get the syntax right!
Something like ...
char[] a_chResult = l_a_chB.All(chRemove => a_chA.Union(ch => ch != chRemove))
Any help is much appreciated.