ImmutableArray<T>.Inequality Operator

定義

オーバーロード

名前 説明
Inequality(ImmutableArray<T>, ImmutableArray<T>)

2 つの配列が等しくないかどうかを示す値を返します。

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

2 つの配列間の不等値をチェックします。

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

ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs

2 つの配列が等しくないかどうかを示す値を返します。

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>

演算子の右側にある配列。

返品

true 配列が等しくない場合。それ以外の場合は false

適用対象

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

ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs
ソース:
ImmutableArray_1.Minimal.cs

2 つの配列間の不等値をチェックします。

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>>

演算子の右側にあるオブジェクト。

返品

true 2 つの配列が等しくない場合。それ以外の場合は false

適用対象