Yes, try the following:
string[] words = txtSearche.Split(' ');
which will give you:
words[0] = put
words[1] = returns
words[2] = between
words[3] = paragraphs
EDIT: Also, as mentioned below by Adkins , an array of words will be created for any size needed for the string that is provided. If you want the list to have dynamic size, I would say that it will move the array to the list using List wordList = words.ToList ();
: Nakul , Split(), :
txtSearche.Split(new string[] { " ", " ", " " }, StringSplitOptions.None);
, , , StringSplitOptions.RemoveEmptyEntries,
txtSearche.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);