MemoryExtensions.LastIndexOfAnyExcept Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
LastIndexOfAnyExcept<T>(Span<T>, T, T, T) |
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato |
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, T, T, T) |
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato |
LastIndexOfAnyExcept<T>(Span<T>, T, T) |
Cerca l'ultimo indice di qualsiasi valore diverso dal |
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, T, T) |
Cerca l'ultimo indice di qualsiasi valore diverso dal |
LastIndexOfAnyExcept<T>(Span<T>, T) |
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato |
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, ReadOnlySpan<T>) |
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato |
LastIndexOfAnyExcept<T>(Span<T>, SearchValues<T>) |
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato |
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, T) |
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato |
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, SearchValues<T>) |
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato |
LastIndexOfAnyExcept<T>(Span<T>, ReadOnlySpan<T>) |
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato |
LastIndexOfAnyExcept<T>(Span<T>, T, T, T)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato value0
, value1
o value2
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(Span<T> span, T value0, T value1, T value2);
public static int LastIndexOfAnyExcept<T> (this Span<T> span, T value0, T value1, T value2) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : Span<'T (requires 'T :> IEquatable<'T>)> * 'T * 'T * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As Span(Of T), value0 As T, value1 As T, value2 As T) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- Span<T>
Intervallo da cercare.
- value0
- T
Valore da evitare.
- value1
- T
Valore da evitare
- value2
- T
Valore da evitare
Restituisce
Indice nell'intervallo dell'ultima occorrenza di qualsiasi valore diverso da value0
, value1
e value2
.
Se tutti i valori sono value0
, value1
e value2
, restituisce -1.
Si applica a
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, T, T, T)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato value0
, value1
o value2
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(ReadOnlySpan<T> span, T value0, T value1, T value2);
public static int LastIndexOfAnyExcept<T> (this ReadOnlySpan<T> span, T value0, T value1, T value2) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> * 'T * 'T * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As ReadOnlySpan(Of T), value0 As T, value1 As T, value2 As T) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- ReadOnlySpan<T>
Intervallo da cercare.
- value0
- T
Valore da evitare.
- value1
- T
Valore da evitare
- value2
- T
Valore da evitare
Restituisce
Indice nell'intervallo dell'ultima occorrenza di qualsiasi valore diverso da value0
, value1
e value2
.
Se tutti i valori sono value0
, value1
e value2
, restituisce -1.
Si applica a
LastIndexOfAnyExcept<T>(Span<T>, T, T)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso dal value0
specificato o value1
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(Span<T> span, T value0, T value1);
public static int LastIndexOfAnyExcept<T> (this Span<T> span, T value0, T value1) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : Span<'T (requires 'T :> IEquatable<'T>)> * 'T * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As Span(Of T), value0 As T, value1 As T) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- Span<T>
Intervallo da cercare.
- value0
- T
Valore da evitare.
- value1
- T
Valore da evitare
Restituisce
Indice nell'intervallo dell'ultima occorrenza di qualsiasi valore diverso da value0
e value1
.
Se tutti i valori sono value0
o value1
, restituisce -1.
Si applica a
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, T, T)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso dal value0
specificato o value1
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(ReadOnlySpan<T> span, T value0, T value1);
public static int LastIndexOfAnyExcept<T> (this ReadOnlySpan<T> span, T value0, T value1) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> * 'T * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As ReadOnlySpan(Of T), value0 As T, value1 As T) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- ReadOnlySpan<T>
Intervallo da cercare.
- value0
- T
Valore da evitare.
- value1
- T
Valore da evitare
Restituisce
Indice nell'intervallo dell'ultima occorrenza di qualsiasi valore diverso da value0
e value1
.
Se tutti i valori sono value0
o value1
, restituisce -1.
Si applica a
LastIndexOfAnyExcept<T>(Span<T>, T)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato value
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(Span<T> span, T value);
public static int LastIndexOfAnyExcept<T> (this Span<T> span, T value) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : Span<'T (requires 'T :> IEquatable<'T>)> * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As Span(Of T), value As T) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- Span<T>
Intervallo da cercare.
- value
- T
Valore da evitare.
Restituisce
Indice nell'intervallo dell'ultima occorrenza di qualsiasi valore diverso da value
.
Se tutti i valori sono value
, restituisce -1.
Si applica a
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato values
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(ReadOnlySpan<T> span, ReadOnlySpan<T> values);
public static int LastIndexOfAnyExcept<T> (this ReadOnlySpan<T> span, ReadOnlySpan<T> values) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> * ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As ReadOnlySpan(Of T), values As ReadOnlySpan(Of T)) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- ReadOnlySpan<T>
Intervallo da cercare.
- values
- ReadOnlySpan<T>
Valori da evitare.
Restituisce
Indice nell'intervallo della prima occorrenza di qualsiasi valore diverso da quelli in values
.
Se tutti i valori si trovano in values
, restituisce -1.
Si applica a
LastIndexOfAnyExcept<T>(Span<T>, SearchValues<T>)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato values
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(Span<T> span, System::Buffers::SearchValues<T> ^ values);
public static int LastIndexOfAnyExcept<T> (this Span<T> span, System.Buffers.SearchValues<T> values) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : Span<'T (requires 'T :> IEquatable<'T>)> * System.Buffers.SearchValues<'T (requires 'T :> IEquatable<'T>)> -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As Span(Of T), values As SearchValues(Of T)) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- Span<T>
Intervallo da cercare.
- values
- SearchValues<T>
Valori da escludere dalla ricerca.
Restituisce
Indice nell'intervallo dell'ultima occorrenza di qualsiasi valore diverso da quelli in values
.
Se tutti i valori si trovano in values
, restituisce -1.
Si applica a
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, T)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato value
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(ReadOnlySpan<T> span, T value);
public static int LastIndexOfAnyExcept<T> (this ReadOnlySpan<T> span, T value) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As ReadOnlySpan(Of T), value As T) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- ReadOnlySpan<T>
Intervallo da cercare.
- value
- T
Valore da evitare.
Restituisce
Indice nell'intervallo dell'ultima occorrenza di qualsiasi valore diverso da value
.
Se tutti i valori sono value
, restituisce -1.
Si applica a
LastIndexOfAnyExcept<T>(ReadOnlySpan<T>, SearchValues<T>)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato values
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(ReadOnlySpan<T> span, System::Buffers::SearchValues<T> ^ values);
public static int LastIndexOfAnyExcept<T> (this ReadOnlySpan<T> span, System.Buffers.SearchValues<T> values) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> * System.Buffers.SearchValues<'T (requires 'T :> IEquatable<'T>)> -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As ReadOnlySpan(Of T), values As SearchValues(Of T)) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- ReadOnlySpan<T>
Intervallo da cercare.
- values
- SearchValues<T>
Valori da escludere dalla ricerca.
Restituisce
Indice nell'intervallo dell'ultima occorrenza di qualsiasi valore diverso da quelli in values
.
Se tutti i valori si trovano in values
, restituisce -1.
Si applica a
LastIndexOfAnyExcept<T>(Span<T>, ReadOnlySpan<T>)
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
- Origine:
- MemoryExtensions.cs
Cerca l'ultimo indice di qualsiasi valore diverso da quello specificato values
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int LastIndexOfAnyExcept(Span<T> span, ReadOnlySpan<T> values);
public static int LastIndexOfAnyExcept<T> (this Span<T> span, ReadOnlySpan<T> values) where T : IEquatable<T>;
static member LastIndexOfAnyExcept : Span<'T (requires 'T :> IEquatable<'T>)> * ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function LastIndexOfAnyExcept(Of T As IEquatable(Of T)) (span As Span(Of T), values As ReadOnlySpan(Of T)) As Integer
Parametri di tipo
- T
Tipo dell'intervallo e dei valori.
Parametri
- span
- Span<T>
Intervallo da cercare.
- values
- ReadOnlySpan<T>
Valori da evitare.
Restituisce
Indice nell'intervallo dell'ultima occorrenza di qualsiasi valore diverso da quelli in values
.
Se tutti i valori si trovano in values
, restituisce -1.