I\'m working on a little part of my program, handling the input, basically I have this little code:
bool Done = false; while (!Done) { ConsoleKeyInfo key =
You can not block input, Even if you do not process it, it goes to the keyboard buffer.
You can simply stop getting them out of the buffer though.