Size3D.Inequality(Size3D, Size3D) 演算子

定義

2 つの Size3D 構造体を比較し、等しくないかどうかを確認します。 Size3DXY の各プロパティ値が異なっている場合、2 つの Z 構造体は等しくありません。

public:
 static bool operator !=(System::Windows::Media::Media3D::Size3D size1, System::Windows::Media::Media3D::Size3D size2);
public static bool operator != (System.Windows.Media.Media3D.Size3D size1, System.Windows.Media.Media3D.Size3D size2);
static member op_Inequality : System.Windows.Media.Media3D.Size3D * System.Windows.Media.Media3D.Size3D -> bool
Public Shared Operator != (size1 As Size3D, size2 As Size3D) As Boolean

パラメーター

size1
Size3D

比較する最初の Size3D 構造体。

size2
Size3D

比較する 2 番目の Size3D 構造体。

戻り値

Boolean

size1 および size2XYZ の各座標が異なる場合は true。それ以外の場合は false

次の例は、オーバーロードされた不等値演算子を使用して、2 つの Size3D 構造体が等しくないかどうかを確認する方法を示しています。

// Checks if two Size3D structures are not equal using the overloaded != operator. 
// Returns a Boolean.

Size3D size1 = new Size3D(2, 4, 6);
Size3D size2 = new Size3D(5, 10, 15);
Boolean areNotEqual;

areNotEqual = size1 != size2;
// areNotEqual is True

// Displaying Results
syntaxString = "areNotEqual = size1 != size2;";
resultType = "Boolean";
operationString = "Checking if two Size3D structures are not equal";
ShowResults(areNotEqual.ToString(), syntaxString, resultType, operationString);
' Checks if two Size3D structures are not equal using the overloaded != operator. 
' Returns a Boolean.

Dim size1 As New Size3D(2, 4, 6)
Dim size2 As New Size3D(5, 10, 15)
Dim areNotEqual As Boolean

areNotEqual = size1 <> size2
' areNotEqual is True

' Displaying Results
syntaxString = "areNotEqual = size1 != size2"
resultType = "Boolean"
operationString = "Checking if two Size3D structures are not equal"
ShowResults(areNotEqual.ToString(), syntaxString, resultType, operationString)

注釈

算術演算を実行すると、値の精度が失われる可能性があるため Double 、論理的に等しい 2 つの Size3D インスタンス間の比較が失敗する可能性があります。

適用対象