IEnumerable<string> => unique string[]
- by Maxim
Hello,
i have collection of IEnumerable (sentence = string)
i want to split all sentences to words (ex: .Select(t = t.Split(' '));
and after i need group this query by words to get list of unique words.
Please, Help