<PackageReference Include="System.Drawing.Common" Version="9.0.0-rc.2.24474.1" />

Blend

public sealed class Blend
Defines a blend pattern for a LinearGradientBrush object. This class cannot be inherited.
using System.Runtime.CompilerServices; namespace System.Drawing.Drawing2D { [NullableContext(1)] [Nullable(0)] public sealed class Blend { public float[] Factors { get; set; } public float[] Positions { get; set; } public Blend() { Factors = new float[1]; Positions = new float[1]; } public Blend(int count) { Factors = new float[count]; Positions = new float[count]; } } }