Delegate RefAction<T, TArgs>
Represents action that accepts arbitrary value by reference.
Namespace: DotNext
Assembly: DotNext.dll
Syntax
public delegate void RefAction<T, in TArgs>(ref T reference, TArgs args)
Parameters
Type | Name | Description |
---|---|---|
T | reference | The object passed by reference. |
TArgs | args | The action arguments. |
Type Parameters
Name | Description |
---|---|
T | The type of the object to be passed by reference into the action. |
TArgs | The type of the arguments to be passed into the action. |