Hello everyone,
I am using C# + VSTS2008 + .Net 3.0. I have an input as a string array. And I need to output the unique strings of the array. Any ideas how to implement this efficiently?
For example, I have input {"abc", "abcd", "abcd"}, the output I want to be is {"abc", "abcd"}.
thanks in avdance, George