Vector<T>.Inequality(Vector<T>, Vector<T>) 演算子

定義

指定したベクトルの要素のいずれか 1 つのペアが等しいかどうかを示す値を返します。

public:
 static bool operator !=(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static bool operator != (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
static member op_Inequality : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> bool
static member op_Inequality : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> bool
Public Shared Operator != (left As Vector(Of T), right As Vector(Of T)) As Boolean

パラメーター

left
Vector<T>

比較する最初のベクトル。

right
Vector<T>

比較する 2 番目のベクトル。

戻り値

左辺と右辺でいずれかの要素ペアが等しい場合は true。 等しい要素ペアがない場合は false

例外

.NET 5 以降: 型 T はサポートされていません。

適用対象