// // AddCurve // public void AddCurve(Point[] points) { if (points == null) throw new ArgumentNullException(nameof(points)); int status = Gdip.GdipAddPathCurveI(_nativePath, points, points.Length); Gdip.CheckStatus(status); }
public unsafe void AddCurve(Point[] points) { ArgumentNullException.ThrowIfNull(points); fixed(Point *p = points) { Gdip.CheckStatus(Gdip.GdipAddPathCurveI(new HandleRef(this, _nativePath), p, points.Length)); } }
public unsafe void AddCurve(Point[] points) { if (points == null) throw new ArgumentNullException(nameof(points)); fixed(Point *p = points) { Gdip.CheckStatus(Gdip.GdipAddPathCurveI(new HandleRef(this, _nativePath), p, points.Length)); } }