Class MemoryStats
Contains information about current memory usage and capacity.
Inheritance
System.Object
MemoryStats
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public sealed class MemoryStats : ValueType
Fields
ExtraDevelopmentMemory
Amount of extra memory assigned by the platform for development. Only used on platforms with fixed memory and no paging.
Declaration
public ulong ExtraDevelopmentMemory
Field Value
System.UInt64
|
ProgramSizeMemory
Amount of memory used initially by the program data (executable code, exclusive shared libraries and global static data sections).
Declaration
public ulong ProgramSizeMemory
Field Value
System.UInt64
|
TotalPhysicalMemory
Total amount of physical memory in bytes.
Declaration
public ulong TotalPhysicalMemory
Field Value
System.UInt64
|
TotalVirtualMemory
Total amount of virtual memory in bytes.
Declaration
public ulong TotalVirtualMemory
Field Value
System.UInt64
|
UsedPhysicalMemory
Amount of used physical memory in bytes.
Declaration
public ulong UsedPhysicalMemory
Field Value
System.UInt64
|
UsedVirtualMemory
Amount of used virtual memory in bytes.
Declaration
public ulong UsedVirtualMemory
Field Value
System.UInt64
|