ImmutableArray<T>.Inequality 演算子

定義

オーバーロード

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

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

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

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

戻り値

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

適用対象