ImmutableArray<T>.Equality Оператор

Определение

Перегрузки

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

Возвращает значение, указывающее, равны ли два массива.

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

Возвращает значение, указывающее, равны ли два массива.

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

Source:
ImmutableArray_1.Minimal.cs
Source:
ImmutableArray_1.Minimal.cs
Source:
ImmutableArray_1.Minimal.cs

Возвращает значение, указывающее, равны ли два массива.

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

Source:
ImmutableArray_1.Minimal.cs
Source:
ImmutableArray_1.Minimal.cs
Source:
ImmutableArray_1.Minimal.cs

Возвращает значение, указывающее, равны ли два массива.

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.

Применяется к