Possible Duplicate:
Console.Readline() max length?
In my attempt to find a very simple text to speech application I decided it was faster to write my own. I noticed, however, that Console.Readline()
is limited in the amount of text it allows per line to 254 characters; I can't find anything about this limit in the method documentation.
Is this a limitation in the Windows stack, or a problem with my code? How can I overcome it? I could decide to read character by character with Console.Readkey()
, but won't I then risk losing characters to the MS DOS dumb text pasting behavior?