Untitled
unknown
plain_text
3 years ago
383 B
8
Indexable
using System;
using System.Threading;
class Program
{
static void Main(string[] args)
{
Thread t = new Thread(() =>
{
while (!Console.KeyAvailable)
{
Console.WriteLine(DateTime.Now);
Thread.Sleep(1000);
}
});
t.Start();
Console.ReadKey();
}
}
Editor is loading...