MULTITHREADING - SiberMega - Basit Yazılım ve Tasarım Eğitimleri

Popüler Yazılar

Post Top Ad

Responsive Ads Here

Post Top Ad

Responsive Ads Here

06/04/2023

MULTITHREADING

 

public static void CountDown()
{
for (int i = 10; i >= 0; i--)
{
Console.WriteLine("Timer #1 : " + i + " seconds");
Thread.Sleep(1000);
}
Console.WriteLine("Timer #1 is complete!");
}

public static void CountUp()
{
for (int i = 0; i <= 10; i++)
{
Console.WriteLine("Timer #2 : " + i + " seconds");
Thread.Sleep(1000);
}
Console.WriteLine("Timer #2 is complete!");
}
static void Main(string[] args)
{
CountDown();
CountUp();
}
static void Main(string[] args)
{
Thread thread1 = new Thread(CountDown);
Thread thread2 = new Thread(CountUp);

thread1.Start();
thread2.Start();
}

Hiç yorum yok:

Yorum Gönder

Görüş ve Düşüncelerinizi Bizimle Paylaşmayı Unutmayın.

Post Top Ad

Responsive Ads Here