<PackageReference Include="System.Drawing.Common" Version="10.0.0-preview.6.25358.103" />

Windows.Win32.Graphics.Gdi.ArgbBuffer

struct ArgbBuffer
Buffer for ARGB values. Uses the stack for buffer sizes up to 16. Use in a using statement.
namespace Windows.Win32.Graphics.Gdi { internal ref struct ArgbBuffer { private unsafe fixed uint _stackBuffer[16]; public ArgbBuffer(int length); public ArgbBuffer(Span<Color> colors); public ref uint GetPinnableReference(); public Color[] ToColorArray(int length); public void Dispose(); } }