Matrix.Inequality(Matrix, Matrix) 运算符

定义

确定两个指定的 Matrix 结构是否不同。Determines whether the two specified Matrix structs are not identical.

public:
 static bool operator !=(Windows::UI::Xaml::Media::Matrix matrix1, Windows::UI::Xaml::Media::Matrix matrix2);
public static bool operator != (Windows.UI.Xaml.Media.Matrix matrix1, Windows.UI.Xaml.Media.Matrix matrix2);
static member op_Inequality : Windows.UI.Xaml.Media.Matrix * Windows.UI.Xaml.Media.Matrix -> bool
Public Shared Operator != (matrix1 As Matrix, matrix2 As Matrix) As Boolean

参数

matrix1
Matrix

要比较的第一个 Matrix 结构。The first Matrix struct to compare.

matrix2
Matrix

要比较的第二个 Matrix 结构。The second Matrix struct to compare.

返回

Boolean

如果 matrix1matrix2 不同,则为 true;否则为 falsetrue if matrix1 and matrix2 are not identical; otherwise, false.

注解

此结构表示 Windows 运行时 (WinRT) 结构的 .NET 投影 MatrixThis struct represents the .NET projection of the Windows Runtime (WinRT) Matrix struct. 有关详细信息,请参阅 UWP API 参考中的 MatrixFor more information, see Matrix in the UWP API reference.

有关此成员的详细信息和示例,请参阅 Matrix.Inequality .NET FRAMEWORK API 参考中的。For more information and examples of this member, see Matrix.Inequality in the .NET Framework API reference.

适用于