using System;
using System.Diagnostics;
public class Run_exe
{
public void Main()
{
Process compiler = new Process();
compiler.StartInfo.FileName = "c:\\autoexec.bat";
compiler.StartInfo.UseShellExecute = true;
compiler.Start();
}
}
| cs |
댓글 없음:
댓글 쓰기