ImmutableArray<T>.Inequality 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 |
|---|---|
| Inequality(ImmutableArray<T>, ImmutableArray<T>) |
Gibt einen Wert zurück, der angibt, ob zwei Arrays nicht gleich sind. |
| Inequality(Nullable<ImmutableArray<T>>, Nullable<ImmutableArray<T>>) |
Sucht nach Ungleichheiten zwischen zwei Arrays. |
Inequality(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 nicht 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 op_Inequality : 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 nicht gleich sind; andernfalls . false
Gilt für:
Inequality(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
Sucht nach Ungleichheiten zwischen zwei Arrays.
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 op_Inequality : 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 Objekt links vom Operator.
- right
- Nullable<ImmutableArray<T>>
Das Objekt rechts vom Operator.
Gibt zurück
truewenn die beiden Arrays nicht gleich sind; andernfalls . false