Process p = new Process(); //Process类有一个StartInfo属性 //设定程序名 p.StartInfo.FileName = "cmd.exe"; ////设定程式执行参数 "/C"表示执行完命令后马上退出 p.StartInfo.Arguments = string.Format("/c date {0} time {1}",date,time); ////关闭Shell的使用 p.StartInfo
核心代码: using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace TestServerTime { public class Se