本文介绍了C#控制台应用程序中的多线程示例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请给我一些示例,以在控制台应用程序的C#代码中调用无数个多线程.

谢谢,
Senthil

Please give me some samples for calling innumerous Multiple threads in C# code of Console application.

Thanks,
Senthil

推荐答案


ThreadStart t1=new ThreadStart(Threadname1);
ThreadStart t2=new ThreadStart(Threadname2);
ThreadStart t3=new ThreadStart(Threadname3);
Thread th1=new Thread(t1);
Thread th2=new Thread(t2);
Thread th3=new Thread(t3;
th1.Priority=ThreadPriority.High;
th2.Priority=ThreadPriority.;
th3.Priority=ThreadPriority.normal;
th1.Start();
th2.Start();
th3.Start();


这篇关于C#控制台应用程序中的多线程示例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 01:44