ImmutableList<T>.Builder.ConvertAll<TOutput> 메서드

정의

변환기 함수를 사용하여 이 작성기가 나타내는 목록에서 변경할 수 없는 새 목록을 만듭니다.

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)

형식 매개 변수

TOutput

대리자 변환기 함수의 출력 형식입니다.

매개 변수

converter
Func<T,TOutput>

변환기 함수입니다.

반환

ImmutableList<TOutput>

이 작성기가 나타내는 목록에서 만든 변경할 수 없는 새 목록입니다.

적용 대상