コード例 #1
0
ファイル: Performances.cs プロジェクト: w4x51m/Cerberus-V3
        public static string GetFreeMemory()
        {
            var phav        = PerformanceInfo.GetPhysicalAvailableMemoryInMiB();
            var tot         = PerformanceInfo.GetTotalMemoryInMiB();
            var percentFree = phav / (decimal)tot * 100;

            return(percentFree.ToString("##.##"));
        }
コード例 #2
0
ファイル: Performances.cs プロジェクト: w4x51m/Cerberus-V3
 public static string GetFreeMemoryMB() => PerformanceInfo.GetPhysicalAvailableMemoryInMiB().ToString();