0
If you want every word in different lines you can use "\n" between words.
Example:
string text = "Hello\nworld!";
Console.Write(text);
// Output:
hello
world!
(Reference: https://docs.microsoft.com/en-us/dotnet/standard/base-types/character-escapes-in-regular-expressions)