我想从 C# 代码运行ANSYS Fluent exe 文件
现在为了比较,我举两个例子
Process fluent = Process.Start(@"C:\Program Files\ANSYS Inc\v130\fluent\ntbin\win64\fluent.exe", @"2ddp file.jou");
Process browser = Process.Start("IExplorer.exe", "http://www.google.com");
为什么browser.ID
C# 中的代码与 TaskManager 中的相同?为什么fluent.ID
代码与 TaskManager 不同?
是因为 Fluent 的特性还是我犯了一些错误?
主要问题:如何运行 Fluent 并在 C# 代码中捕获其 ID?