码迷,mamicode.com
首页 > 编程语言 > 详细

C# 进程优先级和线程优先级的方法

时间:2016-04-18 17:16:33      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

C#  设置进程优先级的方法

this.process1= Process.GetCurrentProcess();
process1.PriorityClass = ProcessPriorityClass.High;

 

C#设置线程优先级的方法

  Thread.CurrentThread.Priority = ThreadPriority.Highest;

 

C# 进程优先级和线程优先级的方法

标签:

原文地址:http://www.cnblogs.com/ModBus/p/5404953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!