I have built a simple console application, and I need to give a specific time for user to input a keychar.
Should I use this?
System.Threading.Thread.Sleep(1000);
For those who didn't understand, I need the program to skip the Console.ReadKey().KeyChar;
after x
seconds.
Is this possible?