Untitled
unknown
plain_text
3 years ago
335 B
8
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...