How to Get the amount of RAM available on the System in C#
By FoxLearn 12/10/2024 2:36:04 AM 17.36K
In C#, you can get the amount of available RAM on a system using the Microsoft.VisualBasic.Devices
namespace or by querying the system's performance counters.
How to Get the amount of RAM available on the System in C#
Open your Visual Studio, then create a new Console Application project to play demo.
If you want to use Microsoft.VisualBasic.Devices
you need to add a reference to Microsoft.VisualBasic
if it's not already included in your project, then use the ComputerInfo
class to get the available physical memory.
The ComputerInfo
class in the Microsoft.VisualBasic.Devices
namespace provides information about the computer's memory.
// c# get ram size ComputerInfo computerInfo = new ComputerInfo(); // c# get available memory, c# get free memory ulong availableMemory = computerInfo.AvailablePhysicalMemory; Console.WriteLine($"Available Physical Memory: {availableMemory / 1024 / 1024} MB");
If you want to use PerformanceCounter
you should add a reference to System.Diagnostics
to your project, then use the PerformanceCounter
class to get the available memory.
For example, using PerformanceCounter
to Get Available Memory
// Create a PerformanceCounter for available memory PerformanceCounter availableMemory = new PerformanceCounter("Memory", "Available MBytes"); // Get the available memory float availableMB = availableMemory.NextValue(); Console.WriteLine($"Available Physical Memory: {availableMB} MB");
The PerformanceCounter
class can be used to get various system performance metrics, including available memory.
If you want to get information about the ram available on your system, you can use the Win32_OperatingSystem WMI class.
You need to import System.Management to your project by right-clicking on your project, then select Add References.
Openning your Program class, then modify your code as shown below.
// c# get total memory static void Main(string[] args) { ObjectQuery objectQuery = new ObjectQuery("SELECT * FROM Win32_OperatingSystem"); ManagementObjectSearcher managementObjectSearcher = new ManagementObjectSearcher(objectQuery); ManagementObjectCollection managementObjectCollection = managementObjectSearcher.Get(); foreach (ManagementObject managementObject in managementObjectCollection) { Console.WriteLine("Total Visible Memory: {0} KB", managementObject["TotalVisibleMemorySize"]); Console.WriteLine("Free Physical Memory: {0} KB", managementObject["FreePhysicalMemory"]); Console.WriteLine("Total Virtual Memory: {0} KB", managementObject["TotalVirtualMemorySize"]); Console.WriteLine("Free Virtual Memory: {0} KB", managementObject["FreeVirtualMemory"]); } Console.ReadLine(); }
Press F5 to run your project.
TotalVisibleMemorySize: The amount of physical memory available for the operating system. This value does not necessarily indicate the actual physical memory capacity, but what is reported for the operating system is available to it.
FreePhysicalMemory: The amount of physical memory currently not in use and available.
TotalVirtualMemorySize: Capacity of virtual memory. Calculated by adding the total amount of RAM to the paging capacity, that is, adding the amount of memory in or aggregated by the computer system to the SizeStoredInPagingFiles property.
FreeVirtualMemory: Virtual memory capacity currently unused and available.
- Entity Framework Code First vs Database First vs Model First Approach
- How to use Modern UI Metro Framework in C#
- How to Create CPU and Memory Monitor using Metro Modern UI in C#
- How to Create a Metro Modern Flat UI Dashboard in C#
- How to use LINQ to Entities Queries in Entity Framework
- How to Download and Install Metro Framework
- How To Use Metro Framework Metro Style Manager in C#
- How to Create a Modern Windows 8 UI with the Metro Framework in C#