[]
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
| 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. |
| Name | Description |
|---|---|
| StructAction(object, IntPtr) |
| Name | Description |
|---|---|
| BeginInvoke(ref T, AsyncCallback, object) | |
| EndInvoke(ref T, IAsyncResult) | |
| Invoke(ref T) |