在C#中調(diào)用cmd并輸入?yún)?shù)可以通過Process類實(shí)現(xiàn)。下面是一個(gè)示例代碼:
using System;
using System.Diagnostics;
class Program
{
static void Main()
{
string cmdPath = "cmd.exe";
string arguments = "/C echo Hello World";
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = cmdPath;
startInfo.Arguments = arguments;
startInfo.UseShellExecute = false;
startInfo.RedirectStandardOutput = true;
Process process = new Process();
process.StartInfo = startInfo;
process.Start();
string output = process.StandardOutput.ReadToEnd();
Console.WriteLine(output);
process.WaitForExit();
}
}
在上面的示例代碼中,我們調(diào)用了cmd并使用參數(shù)/C echo Hello World
來輸出"Hello World"。您可以根據(jù)需要修改cmdPath
和arguments
變量來執(zhí)行不同的命令和參數(shù)。