Is it possible to get the size of system available memory in C#.NET? if yes how?
|
|
|
Use Microsoft.VisualBasic.Devices.ComputerInfo.TotalPhysicalMemory. Project + Add Reference for Microsoft.VisualBasic is required. |
|||||||||||
|
|
From EggHeadCafe after googling for 'c# system memory' You will need to add a reference to System.Management
Output: Total Space = 4033036 Total Physical Memory = 2095172 Total Virtual Memory = 1933904 Available Virtual Memory = 116280 |
|||||
|
|
This answer is based on Hans Passant's. The required property is AvailablePhysicalMemory actually. and it (and TotalPhysicalMemory and others) are instance variables, so it should be
It works in C#, but I wonder why this page says that for C#, "This language is not supported or no code example is available." |
|||||||||
|
|
Using the performance counters accessible via System.Diagnostics will be one option. Refer http://www.dotnetspider.com/resources/4612-Find-Memory-usage-CPU-usage.aspx Hope this helps! |
|||
|
|