MonoDevelop でコードを書いており、System.Threading の名前空間を試してみたいと思っています。私はこの簡単なコードを書きました:
class MainClass {
public static void Main (string[] args) {
System.Threading.Thread thread=new System.Threading.Thread(new System.Threading.ThreadStart(ThreadProc));
Console.WriteLine(thread.Priority);//output current thread priority
thread.Priority=System.Threading.ThreadPriority.Highest;//change thread priority
Console.WriteLine(thread.Priority);//output current thread priority again
}
public static void ThreadProc() {
//make some operations
}
}
しかし、私はこれを見ます:
つまり、スレッドの優先度は変更されていません (OS: Ubuntu 12.10)。スレッドの優先度を変更するにはどうすればよいですか?