c#net有多少种线程实现方法

如题所述

第1个回答  2017-08-10
backgroundworker thread task
推荐用法
Task tk=new Task(()=>{
run();//方法 自定义任务 todo
});
tk.Start();本回答被提问者采纳
相似回答