ImmutableArray<T>.Inequality 运算符

定义

重载

Inequality(ImmutableArray<T>, ImmutableArray<T>)

返回一个值,该值指示两个数组是否不相等。

Inequality(Nullable<ImmutableArray<T>>, Nullable<ImmutableArray<T>>)

检查两个数组是否不相等。

Inequality(ImmutableArray<T>, ImmutableArray<T>)

返回一个值,该值指示两个数组是否不相等。

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

参数

left
ImmutableArray<T>

运算符左边的数组。

right
ImmutableArray<T>

运算符右边的数组。

返回

Boolean

如果数组不相等,则为 true;否则为 false

适用于

Inequality(Nullable<ImmutableArray<T>>, Nullable<ImmutableArray<T>>)

检查两个数组是否不相等。

public:
 static bool operator !=(Nullable<System::Collections::Immutable::ImmutableArray<T>> left, Nullable<System::Collections::Immutable::ImmutableArray<T>> right);
public static bool operator != (System.Collections.Immutable.ImmutableArray<T>? left, System.Collections.Immutable.ImmutableArray<T>? right);
static member op_Inequality : Nullable<System.Collections.Immutable.ImmutableArray<'T>> * Nullable<System.Collections.Immutable.ImmutableArray<'T>> -> bool
Public Shared Operator != (left As Nullable(Of ImmutableArray(Of T)), right As Nullable(Of ImmutableArray(Of T))) As Boolean

参数

left
Nullable<ImmutableArray<T>>

运算符左边的对象。

right
Nullable<ImmutableArray<T>>

运算符右边的对象。

返回

Boolean

如果两个数组不相等,则为 true;否则,为 false

适用于