3 writes to width
System.Drawing.Primitives (3)
System\Drawing\Size.cs (3)
31width = pt.X; 40this.width = width; 135set => width = value;
7 references to width
System.Drawing.Primitives (7)
System\Drawing\Size.cs (7)
81public static Size operator /(Size left, int right) => new Size(unchecked(left.width / right), unchecked(left.height / right)); 106=> new SizeF(left.width / right, left.height / right); 127public readonly bool IsEmpty => width == 0 && height == 0; 134readonly get => width; 192public override readonly string ToString() => $"{{Width={width}, Height={height}}}"; 201new Size(unchecked(size.width * multiplier), unchecked(size.height * multiplier)); 210new SizeF(size.width * multiplier, size.height * multiplier);