Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 C# 的新进程中调度应用程序?
我需要做与他们拥有的一些python代码相同的事情:
myApp = Dispatch(MAPPOINT)
与 C# 中的等价物是什么?它的作用是为应用程序 MAPPOINT 启动一个新进程。
谢谢
你在找Process.Start吗?
Process.Start
Process.Start("notepad");