[]
Encapsulates a method that has a single parameter (passed by reference) and does not return a value.
public delegate void StructAction<T>(ref T item) where T : struct
Public Delegate Sub StructAction(Of T As Structure)(item As T)
Type | Name | Description |
---|---|---|
T | item | The parameter of the method that this delegate encapsulates. |
Name | Description |
---|---|
T | The type of the parameter of the method that this delegate encapsulates. |