---------- 下列範例會啟動 [記事本] 程式的執行個體。 接著,它會在最多 10 秒鐘的期間,以 2 秒鐘為間隔,擷取相關處理序所耗用的實體記憶體。 該範例會偵測該處理序是否會在 10 秒鐘之內結束。 如果超過 10 秒鐘之後仍在執行,該範例就會關閉該處理序。 using System; using System.Diagnostics; using System.Threading; namespace Process_Sample { class MyProcessClass { public static void Main() { try { Process myProcess; myProcess = Process.Start("Notepad.exe"); // Display physical memory usage 5 times at intervals of 2 seconds. for (int i = 0;i < 5; i++) { if (!myProcess.HasExited) { // Discard cached information about the process. myProcess.Refresh(); // Print working set to console. Console.WriteLine("Physical Memory Usage: " + myProcess.WorkingSet.ToString()); // Wait 2 seconds. Thread.Sleep(2000); } else { break; } } // Close process by sending a close message to its main window. myProcess.CloseMainWindow(); // Free resources associated with process. myProcess.Close(); } catch(Exception e) { Console.WriteLine("The following exception was raised: "); Console.WriteLine(e.Message); } } } }