Untitled
Anonymous
plain_text
03/28/2023 8:05 AM
512 B
17
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...