本文介绍了如何为c中的线程分配优先级的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个线程..

但我不知道如何为这些线程分配优先级..


你能帮我吗……

i create a thread..

but i don''t know how to assign the priority to those threads..


can you help me...............

推荐答案

Thread t = new Thread(() => { Console.WriteLine("Doing some work"); });
t.Priority = ThreadPriority.AboveNormal; //Assign priority here



请至少向Google提出这样的简单问题.



Please atleast google for such simple questions.




这篇关于如何为c中的线程分配优先级的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 06:30
查看更多