我正在编写一个应用程序,用户可以在其中更改应用程序(进程的)Basepriority
我怎么能在.Net中做到这一点?
似乎我只能“获得”Basepriority值,但我不能“设置”它。
答案 0 :(得分:4)
找到它
System.Diagnostics.Process.GetCurrentProcess().PriorityClass = System.Diagnostics.ProcessPriorityClass.RealTime;
我正在查看只读的System.Diagnostics.Process.GetCurrentProcess ().BasePriority
(我知道跛脚......)