Vector<T>.Inequality(Vector<T>, Vector<T>) 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个值,该值指示指定向量中的任意元素对是否相等。
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>
要比较的第二个向量。
返回
如果左侧和右侧的任意元素对相等,则为 true
。 如果没有元素对相等,则为 false
例外
.NET 5 及更高版本:不支持类型 T
。