[]
Retrieves all the T
that match the specified type TTarget.
public List<TTarget> FindAll<TTarget>() where TTarget : T
Public Function FindAll(Of TTarget As T)() As List(Of TTarget)
Type | Description |
---|---|
List<TTarget> | A List<T> that contains all the |
Name | Description |
---|---|
TTarget |
Retrieves all the T
that match the specified type TTarget and match the conditions defined by the specified predicate.
public List<TTarget> FindAll<TTarget>(Predicate<TTarget> match) where TTarget : T
Public Function FindAll(Of TTarget As T)(match As Predicate(Of TTarget)) As List(Of TTarget)
Type | Name | Description |
---|---|---|
Predicate<TTarget> | match | The Predicate<T> delegate that defines the conditions of the |
Type | Description |
---|---|
List<TTarget> | A List<T> that contains all the |
Name | Description |
---|---|
TTarget |
Type | Condition |
---|---|
ArgumentNullException | match is null. |