3 writes to y
System.Drawing.Primitives (3)
System\Drawing\PointF.cs (3)
31this.y = y; 41y = vector.Y; 70set => y = value;
4 references to y
System.Drawing.Primitives (4)
System\Drawing\PointF.cs (4)
47public Vector2 ToVector2() => new Vector2(x, y); 53public readonly bool IsEmpty => x == 0f && y == 0f; 69readonly get => y; 143public override readonly string ToString() => $"{{X={x}, Y={y}}}";