亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

C#調(diào)用CMD命令實例

 更新時間:2014年08月30日 11:53:27   作者:石圣  
這篇文章主要介紹了C#調(diào)用CMD命令實例本文只是給出一個比較簡單的、入門級的例子,更多高級的操作技巧請參閱相關(guān)文章,需要的朋友可以參考下

有時候有一些DOS命令需要我們在執(zhí)行程序的時候調(diào)用,這需要使用C#提供的相關(guān)接口。

代碼如下,很簡單,相信大家都能看懂,我就不贅述了。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;//這個是進(jìn)行dos命令調(diào)用

namespace ExecuteCMD
{
  //實現(xiàn)讀取Excel文件的功能
  class ExecuteCMD
  {

    public static void CreateDll(){
      Process p = new Process();
      p.StartInfo.FileName = "cmd.exe";
      p.StartInfo.UseShellExecute = false;
      p.StartInfo.RedirectStandardInput = true;
      p.StartInfo.RedirectStandardOutput = true;
      p.StartInfo.RedirectStandardError = true;
      p.StartInfo.CreateNoWindow = false;
      p.Start();
      p.StandardInput.WriteLine("systeminfo");
      Console.Write(p.StandardOutput.ReadToEnd());
      p.StandardInput.WriteLine("exit");
    }
  }
}

相關(guān)文章

最新評論