[]
Represents the method that defines a set of criteria and determines whether the specified struct meets those criteria.
public delegate bool StructPredicate<T>(in T item) where T : struct
Public Delegate Function StructPredicate(Of T As Structure)(ByRef item As T) As Boolean
| Type | Name | Description |
|---|---|---|
| T | item | The struct to compare against the criteria defined within the method represented by this delegate. |
| Type | Description |
|---|---|
| bool | true if |
| Name | Description |
|---|---|
| T | The type of the struct to compare. |