c# – Process.Start()什么时候可以返回null?

前端之家收集整理的这篇文章主要介绍了c# – Process.Start()什么时候可以返回null?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一些代码通过使用 Process.Start(ProcessStartInfo)启动一个进程.我从文档中看到,如果现有进程被重用,此方法可以返回null.

[Returns a] new Process component that is associated with the process
resource,or null if no process resource is started (for example,
if an existing process is reused).

对现有流程进行再利用和在何种情况下会发生什么意味着什么?

解决方法

如果您调用传递文件(而不是EXE),并且该文件配置为使用DDE启动,则会发生这种情况.

例如,这是Office应用程序在现有实例中打开文件的方式.

猜你在找的C#相关文章