I want to get a new array of strings without duplicate values from the original array of strings. For example if the original array is {a b b b c d, a a b b c, a b c c }, my new string should not contain duplicates. I have not been able to figure it out at all as all the solutions in different threads talk about single string arrays and not multiple ones like this. I don't know if I have to use the .split function and add to a hashset and then add it back to a new list that I created.
Any help would be appreciated.