How do I get the first 250 words of a string?
String.Join(" ", yourstring.Split().Take(250).ToArray())