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
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
|
Properties
Default
The default MemoryStats.
Declaration
public static MemoryStats Default { get; }
Property Value
MemoryStats
|