ImmutableArray<T>.Equality 演算子
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Equality(ImmutableArray<T>, ImmutableArray<T>) |
2 つの配列が等しいかどうかを示す値を返します。 |
Equality(Nullable<ImmutableArray<T>>, Nullable<ImmutableArray<T>>) |
2 つの配列が等しいかどうかを示す値を返します。 |
Equality(ImmutableArray<T>, ImmutableArray<T>)
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>>)
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
。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET