Is it possible to get the size of system available memory in C#.NET? if yes how?
var performance = new System.Diagnostics.PerformanceCounter("Memory", "Available MBytes"); var memory = performance.NextValue();