I have 2 string arrays.I want to remove all the duplicates from a string[] b based on string[] a. I don't want to alter string[] a. I want to remove strings from string[] b that are common in both string[] a and string[] b
for example
a = { "1", "2", "3", "4"};
b = { "3", "4", "5", "6"};
the result i am looking for is
a = { "1", "2", "3", "4"};
b = { "5", "6"};
please help.