T
FindFilesOfType<T> Method
See Also 
SourceCode.Framework Namespace > IProjectFilesContainer Interface : FindFilesOfType<T> Method



recursive

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Function FindFilesOfType(Of T)( _
   ByVal recursive As Boolean _
) As T()
Visual Basic (Usage) Copy Code
Dim instance As IProjectFilesContainer
Dim recursive As Boolean
Dim value() As T
 
value = instance.FindFilesOfType(Of T)(recursive)
C#  
T[] FindFilesOfType<T>( 
   bool recursive
)
C++/CLI  
array<T^>^ FindFilesOfTypegeneric<typename T>
( 
   bool recursive
) 

Parameters

recursive

Type Parameters

T

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