Vector<T>.Inequality(Vector<T>, Vector<T>) Operator

定義

指定したベクター内の要素の 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
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 はサポートされていません。

適用対象