c# - Parallel for loop - threading


 static void Main(string[] args)
        {
            Parallel.For(0, 100, i => s1(i));
        }

        static void s1(int x)
        {
            Console.WriteLine(x.ToString());

        }

Yorumlar