Name: Anonymous 2010-10-04 8:12
In a console application with C#, i want to do a DO WHILE that continue until i press a key... How can i do?
try
using System.Threading;
do
{
///
} while(Console.KeyAvailable == false);