簡単なプログラムは次のとおりです。
class Program {
static void Main(string[] args) {
Process pr = new Process();
ProcessStartInfo prs = new ProcessStartInfo();
prs.FileName = @"notepad.exe";
pr.StartInfo = prs;
pr.EnableRaisingEvents = true;
pr.Start();
Thread.Sleep(2000);
pr.Close(); //how do I change this to close notepad
Console.WriteLine("press [enter] to exit");
Console.ReadLine();
}
}
メモ帳が閉じるようにこれを変更するにはどうすればよいですか?