I\'m trying to grab the first 3 words of a string (E-mail Subject)in C#, has anyone done this before? thanks for your help
List myWordsList = myWords.Split(' ').Take(3).ToList();