PointF.op_Equality

PointF Equality operator

Compares two PointF structures. The result specifies whether the values of the X and Y properties of the two PointF structures are equal.

public static bool operator ==(PointF left, PointF right)
ParameterTypeDescription
leftPointFFirst PointF to compare.
rightPointFSecond PointF to compare.

Return Value

true if the X and Y values of the left and right PointF structures are equal; otherwise, false.

See Also