ImmutableList<T>.ConvertAll<TOutput> Metodo

Definizione

Converte gli elementi dell'elenco non modificabile corrente in un altro tipo e restituisce un elenco contenente gli elementi convertiti.

public:
generic <typename TOutput>
 virtual System::Collections::Immutable::ImmutableList<TOutput> ^ ConvertAll(Func<T, TOutput> ^ converter);
public:
generic <typename TOutput>
 System::Collections::Immutable::ImmutableList<TOutput> ^ ConvertAll(Func<T, TOutput> ^ converter);
public System.Collections.Immutable.ImmutableList<TOutput> ConvertAll<TOutput> (Func<T,TOutput> converter);
abstract member ConvertAll : Func<'T, 'Output> -> System.Collections.Immutable.ImmutableList<'Output>
override this.ConvertAll : Func<'T, 'Output> -> System.Collections.Immutable.ImmutableList<'Output>
member this.ConvertAll : Func<'T, 'Output> -> System.Collections.Immutable.ImmutableList<'Output>
Public Function ConvertAll(Of TOutput) (converter As Func(Of T, TOutput)) As ImmutableList(Of TOutput)

Parametri di tipo

TOutput

Tipo degli elementi della matrice di destinazione.

Parametri

converter
Func<T,TOutput>

Delegato che converte ogni elemento da un tipo in un altro.

Restituisce

ImmutableList<TOutput>

Elenco del tipo di destinazione contenente gli elementi convertiti dall'oggetto ImmutableList<T> corrente.

Si applica a