2020年5月15日 星期五

vb.net console 等程序關閉才結束 [Wait process to finish]


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
Process p = Process.Start("notepad.exe");

Console.WriteLine("Launched");

p.WaitForExit();

p.Close();

Console.WriteLine("Exited");

Console.ReadKey();

沒有留言:

張貼留言