Point::Equals Method (Object^)
.NET Framework (current version)
Determines whether the specified Object is a Point and whether it contains the same coordinates as this Point.
Assembly: WindowsBase (in WindowsBase.dll)
The following example shows how to check if two Point structures are equal using the non-static Equals method.
private Boolean nonStaticEqualsExample() { Point point1 = new Point(10, 5); Point point2 = new Point(15, 40); // Check if the two points are equal using the non-static Equals method. // areEqual is false Boolean areEqual = point1.Equals(point2); return areEqual; }
.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: