zqwuwei的技术博客

理论指导实践,在实践中更好的理解理论
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

04 2013 档案

摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;using System.IO;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { ProcessTest2(); } static void ProcessTest2() ... 阅读全文

posted @ 2013-04-03 16:51 zqwuwei 阅读(187) 评论(0) 推荐(0)

摘要:private void ExecuteCMD(string cmd) { Process process = new Process(); try { process.StartInfo.FileName = "cmd.exe"; process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardInput = tr... 阅读全文

posted @ 2013-04-02 16:06 zqwuwei 阅读(177) 评论(0) 推荐(0)