ImmutableArray<T>.Equality Operatore

Definizione

Overload

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

Restituisce un valore che indica se due matrici sono uguali.

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

Restituisce un valore che indica se due matrici sono uguali.

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

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

Restituisce un valore che indica se due matrici sono uguali.

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

Parametri

left
ImmutableArray<T>

Matrice a sinistra dell'operatore.

right
ImmutableArray<T>

Matrice a destra dell'operatore.

Restituisce

true se le matrici sono uguali; in caso contrario, false.

Si applica a

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

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

Restituisce un valore che indica se due matrici sono uguali.

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

Parametri

left
Nullable<ImmutableArray<T>>

Matrice a sinistra dell'operatore.

right
Nullable<ImmutableArray<T>>

Matrice a destra dell'operatore.

Restituisce

true se le matrici sono uguali; in caso contrario, false.

Si applica a