在C#中,可以使用System.Diagnostics.ProcessStartInfo
类来创建和配置一个新的进程
using System;
using System.Collections.Generic;
using System.Diagnostics;
class Program
{
static void Main()
{
// 创建一个新的 ProcessStartInfo 对象
ProcessStartInfo startInfo = new ProcessStartInfo();
// 设置要运行的应用程序的文件名
startInfo.FileName = "your_application.exe";
// 设置子进程的环境变量
startInfo.EnvironmentVariables["MY_VARIABLE"] = "my_value";
// 将 UseShellExecute 设置为 false,以便我们可以重定向输入/输出
startInfo.UseShellExecute = false;
// 创建并启动新的进程
Process process = new Process();
process.StartInfo = startInfo;
process.Start();
// 等待进程完成
process.WaitForExit();
}
}
在这个示例中,我们首先创建了一个新的ProcessStartInfo
对象。然后,我们设置了要运行的应用程序的文件名,并通过EnvironmentVariables
属性设置了子进程的环境变量。最后,我们创建了一个新的Process
对象,将其StartInfo
属性设置为我们刚刚创建的startInfo
对象,并启动该进程。
请注意,您需要将your_application.exe
替换为您要运行的实际应用程序的文件名。