21 lines
447 B
C#
21 lines
447 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Thousandto.Core.Base
|
|
{
|
|
/// <summary>
|
|
/// 内存信息,单位都是MB
|
|
/// </summary>
|
|
public interface IMemoryInfo
|
|
{
|
|
//获取空闲内存,单位MB
|
|
long GetFreeMemory();
|
|
//获取总的内存,单位MB
|
|
double GetSumMemory();
|
|
//获取当前App使用的内存,单位MB
|
|
double GetAppUsedMemory();
|
|
}
|
|
}
|