TOutput
ConvertAll<TOutput> Method
See Also 
SourceCode.Workflow.Design.InfoPath.FormTemplate Namespace > DesignerCollection<T> Class : ConvertAll<TOutput> Method



converter

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Function ConvertAll(Of TOutput)( _
   ByVal converter As Converter(Of T,TOutput) _
) As List(Of TOutput)
Visual Basic (Usage) Copy Code
Dim instance As DesignerCollection(Of T)
Dim converter As Converter(Of T,TOutput)
Dim value As List(Of TOutput)
 
value = instance.ConvertAll(Of TOutput)(converter)
C#  
public List<TOutput> ConvertAll<TOutput>( 
   Converter<T,TOutput> converter
)
C++/CLI  
public:
List<TOutput^>^ ConvertAllgeneric<typename TOutput>
( 
   Converter<T^,TOutput^>^ converter
) 

Parameters

converter

Type Parameters

TOutput

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also