ImmutableArray<T>.Equality Operator

Definitie

Overloads

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

Retourneert een waarde die aangeeft of twee matrices gelijk zijn.

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

Retourneert een waarde die aangeeft of twee matrices gelijk zijn.

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

Retourneert een waarde die aangeeft of twee matrices gelijk zijn.

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

Parameters

left
Nullable<ImmutableArray<T>>

De matrix links van de operator.

right
Nullable<ImmutableArray<T>>

De matrix rechts van de operator.

Retouren

true als de matrices gelijk zijn; anders, false.

Van toepassing op

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

Retourneert een waarde die aangeeft of twee matrices gelijk zijn.

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

Parameters

left
ImmutableArray<T>

De matrix links van de operator.

right
ImmutableArray<T>

De matrix rechts van de operator.

Retouren

true als de matrices gelijk zijn; anders, false.

Van toepassing op