ImmutableArray<T>.Equality 演算子

定義

オーバーロード

Equality(ImmutableArray<T>, ImmutableArray<T>)

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

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

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

Equality(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 ( = ) : 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

適用対象

Equality(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 ( = ) : 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。それ以外の場合は false

適用対象