我想执行一个命令行工具来处理数据。它不需要阻塞。我希望它是低优先级的。所以我写了下面的内容Processapp=newProcess();app.StartInfo.FileName=@"bin\convert.exe";app.StartInfo.Arguments=TheArgs;app.PriorityClass=ProcessPriorityClass.BelowNormal;app.Start();但是,我得到一个System.InvalidOperationException消息“没有进程与此对象相关联”。为什么?如何以低优先级正确启动此应用?如果没有app.Priorit