我正在编写一个应用程序,用户可以在其中更改应用程序(进程)的 Basepriority

我怎样才能在 .Net 中做到这一点?

似乎我只能“获取”Basepriority 值,但不能“设置”它。

最佳答案

找到了

    System.Diagnostics.Process.GetCurrentProcess().PriorityClass = System.Diagnostics.ProcessPriorityClass.RealTime;

我正在查看只读的 System.Diagnostics.Process.GetCurrentProcess ().BasePriority
(我知道跛脚...)

关于c# - 如何使用 .NET 更改进程的 BasePriority?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2076101/

10-13 07:06