我设法让命令提示符打开,现在如何让它写行?

I managed to get the command prompt to open, now how do I get it to write lines?

基本上,我希望命令提示符自己键入并执行命令"cd/"。这是我用来打开命令提示符的代码:(Windows Form Application Visual c#)

    private void button6_Click(object sender, EventArgs e)
    {
        Process cmd = new Process();
        cmd.StartInfo.FileName = @"C:\Windows\system32\cmd.exe";
        cmd.Start();

    }

使用 StartInfo 属性 的参数 属性 传递 /K(保持 windows 打开)和 CD /(更改为 root)

private void button6_Click(object sender, EventArgs e)
{
    Process cmd = new Process();

    cmd.StartInfo.FileName = @"cmd.exe";
    cmd.StartInfo.Arguments = @"/K CD /";
    cmd.Start();

}