Evbpc.Framework.Drawing.PointF.Equals C# (CSharp) Method

Equals() public method

Determines if the current PointF is equal to the specified object.
public Equals ( object obj ) : bool
obj object The object to compare to the current .
return bool
        public override bool Equals(object obj) => obj is PointF && (PointF)obj == this;