如何在.NET 2.0中控制进程关联?

时间:2010-03-22 10:05:09

标签: .net process

如何在.NET 2.0中控制进程关联?我是.Net的新手。 请帮忙!

3 个答案:

答案 0 :(得分:4)

答案 1 :(得分:2)

使用Process.ProcessorAffinity属性。

// this will cause the process to run only on CPU 1
Process.ProcessorAffinity = new IntPtr(1 << 0);
// this will cause the process to run only on CPU 1+2
Process.ProcessorAffinity = new IntPtr(1 << 0 | 1 << 1);

答案 2 :(得分:2)

一般情况下,你没有。很抱歉,如果这不是您所期望的,但我在这里和那里做了很多服务器概述,很少 - 很少 - 看到需要。

如果您愿意,请查看Process类 - ProcessAffinity属性。但确实要确保你必须在第一时间。