Property TotalMemorySize
TotalMemorySize
Gets the total memory size of the GPU in bytes.
public ulong TotalMemorySize { get; }
Property Value
Examples
Getting Total Memory Size
ulong totalMemory = deviceInfo.TotalMemorySize;
Console.WriteLine($"Total Memory: {totalMemory} bytes");