Go to my github
摘要: /// /// 开启SQL Server服务 /// public static void ProSQLServer() { Process pro = new Process(); pro.StartInfo.FileName = "cmd.exe"; pro.StartInfo.UseShellExecute = false; pro.StartInfo.RedirectStandardInput = true; pro.StartInfo.RedirectStandardOutput = true; pro.StartInfo.RedirectStandardError = true 阅读全文
posted @ 2008-11-07 10:54 峡谷少爷 阅读(215) 评论(0) 推荐(0) 编辑