如果我在C#中運行進程。使用cmd/c而不是直接運行流程有什麼好處?使用cmd.exe/c而不使用cmd的好處
例:
ProcessStartInfo info = new ProcessStartInfo("cmd.exe");
info.Arguments = "/c application.exe";
Process.Start(info);
因爲如果你使用cmd /c
反對
ProcessStartInfo info = new ProcessStartInfo("application.exe");
Process.Start(info);
你知道/ c參數做什麼嗎? –
@JeroenVannevel是的。所以我問這個問題。 – CodingMadeEasy