ImmutableArray<T>.Inequality Operator
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
Inequality(ImmutableArray<T>, ImmutableArray<T>) |
Zwraca wartość wskazującą, czy dwie tablice nie są równe. |
Inequality(Nullable<ImmutableArray<T>>, Nullable<ImmutableArray<T>>) |
Sprawdza nierówność między dwiema tablicami. |
Inequality(ImmutableArray<T>, ImmutableArray<T>)
- Źródło:
- ImmutableArray_1.Minimal.cs
- Źródło:
- ImmutableArray_1.Minimal.cs
- Źródło:
- ImmutableArray_1.Minimal.cs
Zwraca wartość wskazującą, czy dwie tablice nie są równe.
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
Parametry
- left
- ImmutableArray<T>
Tablica po lewej stronie operatora.
- right
- ImmutableArray<T>
Tablica z prawej strony operatora.
Zwraca
true
jeśli tablice nie są równe; w przeciwnym razie , false
.
Dotyczy
Inequality(Nullable<ImmutableArray<T>>, Nullable<ImmutableArray<T>>)
- Źródło:
- ImmutableArray_1.Minimal.cs
- Źródło:
- ImmutableArray_1.Minimal.cs
- Źródło:
- ImmutableArray_1.Minimal.cs
Sprawdza nierówność między dwiema tablicami.
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
Parametry
- left
- Nullable<ImmutableArray<T>>
Obiekt po lewej stronie operatora.
- right
- Nullable<ImmutableArray<T>>
Obiekt po prawej stronie operatora.
Zwraca
true
jeśli dwie tablice nie są równe; w przeciwnym razie , false
.