You can find out the amount of memory on your comuter and more by using the ComputerInfo class in Microsoft.VisualBasic.Devices.
Use:
ComputerInfo cf = new ComputerInfo();
ulong memory = cf.AvailablePhysicalMemory;
To find find out how much memory you have available.
Posted
27 Apr 2009 11:37 AM
by
Gal Ratner