Hi.
I wrote a simple console application. It will read lines and put to an string array.
But, in terminal window, if you delete some characters by pressing backspace, Console.ReadLine() returns these deleted characters too.
Sample:
you write "kadri ma"
ma is wrong, delete these characters pressing backspace twice..
And continue typing "kalemci"
in the terminal you see "kadri kalemci"
but ReadLine() returns kadri makalemci"
Whats the problem? How can I solve it?
|