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

Definição

Cria uma nova lista imutável com base na lista representada por esse construtor, usando a função de conversor.

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

O tipo da saída da função de conversor delegada.

Parâmetros

converter
Func<T,TOutput>

A função de conversor.

Retornos

ImmutableList<TOutput>

Uma nova lista imutável com base na lista representada por este construtor.

Aplica-se a