Untitled
Anonymous
plain_text
03/28/2023 8:01 AM
448 B
17
Indexable
using System;
using System.Threading;
class Program
{
static void Main(string[] args)
{
Thread t = new Thread(() =>
{
for (int i = 1; i <= 10; i++)
{
Console.WriteLine(i);
}
});
t.Start();
Console.ReadKey();
}
}
Editor is loading...