public unsafe static void DrawLines(GpGraphics graphics, GpPen pen, GpPoint[] points) { fixed(GpPoint *p = points) DrawLines(graphics, pen, p, points.Length); }
public unsafe static void DrawLines(GpGraphics graphics, GpPen pen, POINT[] points) { fixed(POINT *p = points) DrawLines(graphics, pen, (GpPoint *)p, points.Length); }