ImmutableArray<T>.Equality Betreiber
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
Equality(ImmutableArray<T>, ImmutableArray<T>) |
Gibt einen Wert zurück, der angibt, ob zwei Arrays gleich sind. |
Equality(Nullable<ImmutableArray<T>>, Nullable<ImmutableArray<T>>) |
Gibt einen Wert zurück, der angibt, ob zwei Arrays gleich sind. |
Equality(ImmutableArray<T>, ImmutableArray<T>)
- Quelle:
- ImmutableArray_1.Minimal.cs
- Quelle:
- ImmutableArray_1.Minimal.cs
- Quelle:
- ImmutableArray_1.Minimal.cs
Gibt einen Wert zurück, der angibt, ob zwei Arrays gleich sind.
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
Parameter
- left
- ImmutableArray<T>
Das Array, das links vom Operator steht.
- right
- ImmutableArray<T>
Das Array, das rechts vom Operator steht.
Gibt zurück
true
bei Gleichheit der Arrays, andernfalls false
.
Gilt für:
Equality(Nullable<ImmutableArray<T>>, Nullable<ImmutableArray<T>>)
- Quelle:
- ImmutableArray_1.Minimal.cs
- Quelle:
- ImmutableArray_1.Minimal.cs
- Quelle:
- ImmutableArray_1.Minimal.cs
Gibt einen Wert zurück, der angibt, ob zwei Arrays gleich sind.
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
Parameter
- left
- Nullable<ImmutableArray<T>>
Das Array, das links vom Operator steht.
- right
- Nullable<ImmutableArray<T>>
Das Array, das rechts vom Operator steht.
Gibt zurück
true
bei Gleichheit der Arrays, andernfalls false
.