ImmutableArray<T>.Equality Operator
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
| Name | Beschreibung |
|---|---|
| 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
- 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 links neben dem Operator.
- right
- ImmutableArray<T>
Das Array rechts neben dem Operator.
Gibt zurück
truewenn die Arrays gleich sind; 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
- 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 links neben dem Operator.
- right
- Nullable<ImmutableArray<T>>
Das Array rechts neben dem Operator.
Gibt zurück
truewenn die Arrays gleich sind; andernfalls . false