You can use the System.GC class to get information about managed memory used in your application. In particular, GC.GetTotalMemory() will give you the total memory allocation by managed code at a specific time. GC.GetTotalMemory() tells the number of bytes currently thought to be allocated. If you'd like to get more information of the memory usage programmatically, e.g. the total committed memory, the total reserved memory, allocated Bytes/second, gen 0 heap size, etc, you can use the PerformanceCounter class to query the current process's Memory Performance Counters. Here is a code example. ---------- 20190222 Process.PrivateMemorySize64 Property Gets the amount of private memory, in bytes, allocated for the associated process. using System; using System.Diagnostics; namespace ProcessSample { class ProcessMonitorSample { public static void Main() { // Define variables to track the peak // memory usage of the process. long peakPagedMem = 0, peakWorkingSet = 0, peakVirtualMem = 0; // Start the process. using (Process myProcess = Process.Start("NotePad.exe")) { // Display the process statistics until // the user closes the program. do { if (!myProcess.HasExited) { // Refresh the current process property values. myProcess.Refresh(); Console.WriteLine(); // Display current process statistics. Console.WriteLine($"{myProcess} -"); Console.WriteLine("-------------------------------------"); Console.WriteLine($" Physical memory usage : {myProcess.WorkingSet64}"); Console.WriteLine($" Base priority : {myProcess.BasePriority}"); Console.WriteLine($" Priority class : {myProcess.PriorityClass}"); Console.WriteLine($" User processor time : {myProcess.UserProcessorTime}"); Console.WriteLine($" Privileged processor time : {myProcess.PrivilegedProcessorTime}"); Console.WriteLine($" Total processor time : {myProcess.TotalProcessorTime}"); Console.WriteLine($" Paged system memory size : {myProcess.PagedSystemMemorySize64}"); Console.WriteLine($" Paged memory size : {myProcess.PagedMemorySize64}"); // Update the values for the overall peak memory statistics. peakPagedMem = myProcess.PeakPagedMemorySize64; peakVirtualMem = myProcess.PeakVirtualMemorySize64; peakWorkingSet = myProcess.PeakWorkingSet64; if (myProcess.Responding) { Console.WriteLine("Status = Running"); } else { Console.WriteLine("Status = Not Responding"); } } } while (!myProcess.WaitForExit(1000)); Console.WriteLine(); Console.WriteLine($" Process exit code : {myProcess.ExitCode}"); // Display peak memory statistics for the process. Console.WriteLine($" Peak physical memory usage : {peakWorkingSet}"); Console.WriteLine($" Peak paged memory usage : {peakPagedMem}"); Console.WriteLine($" Peak virtual memory usage : {peakVirtualMem}"); } } } } ---------- 下列範例會啟動 [記事本] 程式的執行個體。 接著,它會在最多 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); } } } }