摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml;namespace ConsoleDemo{ class Programme { public static void Main(string[] args) { XmlDocument doc = new XmlDocument(); XmlDeclaration dec = doc.CreateXmlDeclar... 阅读全文
posted @ 2014-03-19 15:01 PUHAHA 阅读(364) 评论(0) 推荐(0) 编辑
摘要: System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo("cmd.exe"); info.FileName = @"c:\Login.bat"; System.Diagnostics.Process proc = System.Diagnostics.Process.Start(info); proc.WaitForExit(); 阅读全文
posted @ 2014-03-19 10:28 PUHAHA 阅读(1058) 评论(0) 推荐(0) 编辑