Multithreading in C# | C# Interview Questions | C# | Tamil

preview_player
Показать описание
In this video we are going to see
What is Process ?
What is Thread ?
What is Multithread ?
How to create multithread ?

I thought Form1() as a Form1_Load() method. So I put onload logic in Form1() method.
Correct code is
private void Form1_Load(object sender, EventArgs e)
{
Thread T1 = new Thread(CaptureLog);
T1.Start();
}
Рекомендации по теме
Комментарии
Автор

I thought Form1() as a Form1_Load() method. So I put onload logic in Form1() method.
Correct code is
private void Form1_Load(object sender, EventArgs e)
{
Thread T1 = new Thread(CaptureLog);
T1.Start();
}

tamilcoding
Автор

crisp and clear explanation, Thanks for it . Keep posting 🤝

gangD_krishna
Автор

Bro angular typescript interview question podunga plz

SridharanR-qu
Автор

nice video bro 👍👍 and can u answer why we cant use locking inside the async await.

subashvijay
visit shbcf.ru