Vector<T>.Equality(Vector<T>, Vector<T>) 运算符

定义

返回一个值,该值指示两个指定向量中的每对元素是否相等。

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 ( = ) : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> bool
static member ( = ) : 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>

要比较的第二个向量。

返回

如果 leftright 相等,则为 true;否则为 false

例外

.NET 5 及更高版本:不支持类型 T

注解

如果两个向量属于同一类型,具有相同数目的值,并且 中的每个 left 值都等于 中的 right相应值。

适用于