Exemple #1
0
        public static string GetFreeMemory()
        {
            var phav        = PerformanceInfo.GetPhysicalAvailableMemoryInMiB();
            var tot         = PerformanceInfo.GetTotalMemoryInMiB();
            var percentFree = phav / (decimal)tot * 100;

            return(percentFree.ToString("##.##"));
        }
Exemple #2
0
 public static string GetTotalMemory() => PerformanceInfo.GetTotalMemoryInMiB().ToString();
Exemple #3
0
 public static string GetFreeMemoryMB() => PerformanceInfo.GetPhysicalAvailableMemoryInMiB().ToString();