Vector::Equals Method (Vector, Vector)
.NET Framework (current version)
Compares the two specified vectors for equality.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- vector1
-
Type:
System.Windows::Vector
The first vector to compare.
- vector2
-
Type:
System.Windows::Vector
The second vector to compare.
Return Value
Type: System::Booleantrue if t he X and Y components of vector1 and vector2 are equal; otherwise, false.
The following example shows how to use this method to check whether two Vector structures are equal.
private Boolean equalsExample1() { Vector vector1 = new Vector(20, 30); Vector vector2 = new Vector(20, 30); Boolean areEqual = false; // areEqual is True if (Vector.Equals(vector1, vector2)) { areEqual = true; } return areEqual; }
.NET Framework
Available since 3.0
Available since 3.0
Show: