What is the difference between task and thread?

后端 未结 8 1608
庸人自扰
庸人自扰 2020-11-22 02:45

In C# 4.0, we have Task in the System.Threading.Tasks namespace. What is the true difference between Thread and Task. I did s

8条回答
  •  鱼传尺愫
    2020-11-22 03:33

    Task is like a operation that you wanna perform , Thread helps to manage those operation through multiple process nodes. task is a lightweight option as Threading can lead to a complex code management
    I will suggest to read from MSDN(Best in world) always

    Task

    Thread

提交回复
热议问题