Untitled

 avatar
unknown
plain_text
2 years ago
335 B
4
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...