获取在C#中创建的进程的pid

前端之家收集整理的这篇文章主要介绍了获取在C#中创建的进程的pid前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
让我们说我正在尝试使用以下代码创建一个新进程:
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.WorkingDirectory = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase);
p.StartInfo.FileName = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase) + "\\AwesomeFile.exe";
p.StartInfo.Arguments = "parameter1 parameter2";
p.StartInfo.CreateNoWindow = true;
p.Start();

在下一行中,我将尝试使用以下行获取该进程的pid:

MessageBox.Show(p.Id);

这一行给了我“没有进程与此对象相关联”.错误.知道为什么会出现这个错误吗?

解决方法

做这个 System.Diagnostics.Process.GetProcessesByName( “processname”)[0] .ID.
原文链接:https://www.f2er.com/csharp/95536.html

猜你在找的C#相关文章