ImmutableArray<T>.Equality Operator

Definicja

Przeciążenia

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

Zwraca wartość wskazującą, czy dwie tablice są równe.

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

Zwraca wartość wskazującą, czy dwie tablice są równe.

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

Źródło:
ImmutableArray_1.Minimal.cs
Źródło:
ImmutableArray_1.Minimal.cs
Źródło:
ImmutableArray_1.Minimal.cs

Zwraca wartość wskazującą, czy dwie tablice są równe.

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

Parametry

left
ImmutableArray<T>

Tablica po lewej stronie operatora.

right
ImmutableArray<T>

Tablica z prawej strony operatora.

Zwraca

true jeśli tablice są równe; w przeciwnym razie , false.

Dotyczy

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

Źródło:
ImmutableArray_1.Minimal.cs
Źródło:
ImmutableArray_1.Minimal.cs
Źródło:
ImmutableArray_1.Minimal.cs

Zwraca wartość wskazującą, czy dwie tablice są równe.

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

Parametry

left
Nullable<ImmutableArray<T>>

Tablica po lewej stronie operatora.

right
Nullable<ImmutableArray<T>>

Tablica z prawej strony operatora.

Zwraca

true jeśli tablice są równe; w przeciwnym razie , false.

Dotyczy