'宣言
Public Function FindAll( _ ByVal match As Predicate(Of Style) _ ) As List(Of T)
public List<T> FindAll( Predicate<Style> match )
パラメータ
- match
- The Predicate delegate that defines the conditions of the elements to search for.
'宣言
Public Function FindAll( _ ByVal match As Predicate(Of Style) _ ) As List(Of T)
public List<T> FindAll( Predicate<Style> match )
例外 | 解説 |
---|---|
System.ArgumentNullException | match is null 参照 (Visual Basicでは Nothing). |