Point4D.Inequality(Point4D, Point4D) 運算子

定義

比較兩個 Point4D 結構是否相等。

C#
public static bool operator != (System.Windows.Media.Media3D.Point4D point1, System.Windows.Media.Media3D.Point4D point2);

參數

point1
Point4D

要比較的第一個 Point4D 結構。

point2
Point4D

要比較的第二個 Point4D 結構。

傳回

Boolean

如果 point4D1point4D2XYZW 座標不同則為 true,否則為 false

範例

下列範例示範如何使用多載不等比較運算子來檢查兩 Point4D 個結構是否不相等。

C#
// Checks if two Point4Ds are not equal using the overloaded inequality operator.

Point4D point1 = new Point4D(10, 5, 1, 4);
Point4D point2 = new Point4D(15, 40, 60, 75);
Boolean areNotEqual;

areNotEqual = (point1 != point2);
// areNotEqual is True

// Displaying Results
syntaxString = "areNotEqual = (point1 != point2);";
resultType = "Boolean";
operationString = "Checking if two 3D points are not equal";
ShowResults(areNotEqual.ToString(), syntaxString, resultType, operationString);

備註

如果 、 YZW 屬性的值不同,則兩 Point4DX 結構不相等。

Double由於在算數運算上執行算數運算時,值可能會失去有效位數,因此邏輯上相等的兩 Point4D 個值之間的比較可能會失敗。

適用於

產品 版本
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7