System.Diagnostics.Process p = new Process(); p.StartInfo.UseShellExecute = true; p.StartInfo.FileName = @"D:\text.txt"; p.Start();
System.Diagnostics.Process p = new Process(); p.StartInfo.UseShellExecute = true; p.StartInfo.FileName = @"D:\text.txt"; p.Start();
转载于:https://www.cnblogs.com/lampon/p/3158511.html