To get the total ram of system in C# and VB.NET you can use the following snippet.

Sample C#

Console.WriteLine("Total RAM (bytes) in System: {0}", new Microsoft.VisualBasic.Devices.ComputerInfo().TotalPhysicalMemory);

Sample VB.NET

Console.WriteLine("Total RAM (bytes) in System: {0}", New Microsoft.VisualBasic.Devices.ComputerInfo().TotalPhysicalMemory)

One thought on “How to get the total ram of system in C# and VB.NET”

Leave a Reply