ImmutableArray<T>.Inequality 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
Inequality(ImmutableArray<T>, ImmutableArray<T>) |
Gibt einen Wert zurück, der angibt, ob zwei Arrays ungleich sind. |
Inequality(Nullable<ImmutableArray<T>>, Nullable<ImmutableArray<T>>) |
Prüft auf Ungleichheit zwischen zwei Arrays. |
Inequality(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 ungleich 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, das links vom Operator steht.
- right
- ImmutableArray<T>
Das Array, das rechts vom Operator steht.
Gibt zurück
true
, wenn 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
Prüft auf Ungleichheit 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, das links vom Operator steht.
- right
- Nullable<ImmutableArray<T>>
Das Objekt, das rechts vom Operator steht.
Gibt zurück
true
, wenn die beiden Arrays nicht gleich sind, andernfalls false
.