Point4D.Equality Operator
.NET Framework 4.5
Compares two Point4D structures for equality.
Namespace: System.Windows.Media.Media3D
Assembly: PresentationCore (in PresentationCore.dll)
Parameters
- point1
- Type: System.Windows.Media.Media3D.Point4D
The first Point4D structure to compare.
- point2
- Type: System.Windows.Media.Media3D.Point4D
The second Point4D structure to compare.
Return Value
Type: System.Booleantrue if the X, Y, and Z coordinates of point4D1 and point4D2 are equal; otherwise, false.
The following example shows how to use the overloaded equality operator to check whether two Point4D structures are equal.
// Checks if two Point4D structures are equal using the overloaded equality operator. Point4D point1 = new Point4D(10, 5, 1, 4); Point4D point2 = new Point4D(15, 40, 60, 75); Boolean areEqual; areEqual = (point1 == point2); // areEqual is False // Displaying Results syntaxString = "areEqual = (point1 == point2);"; resultType = "Boolean"; operationString = "Checking if two 3D points are equal"; ShowResults(areEqual.ToString(), syntaxString, resultType, operationString);
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.