ImmutableList<T>.Builder.ConvertAll<TOutput> Método

Definición

Crea una nueva lista inmutable a partir de la lista representada por este generador mediante la función converter.

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)

Parámetros de tipo

TOutput

Tipo de la salida de la función del convertidor de delegados.

Parámetros

converter
Func<T,TOutput>

Función de convertidor.

Devoluciones

ImmutableList<TOutput>

Nueva lista inmutable de la lista representada por este generador.

Se aplica a