I noticed recently that when I used Console.WriteLine on any string larger than 80 characters (or larger than the buffer size) the output would break the string exactly at 80 characters.
If this was really 80 characters the break wou
ld look something like that.
While I know I could use some regex craziness to bypass this problem, I was wondering if there was a simpler solution. I have googled it, but I can't find any code or functions for C# that keep the console from breaking up words.