Delegate Statics.SwitchSyntax.ParamsAction<TA, TB>
Delegate with params intended to be used with the Switch syntax.
Namespace: Towel
Assembly: Towel.dll
Syntax
public delegate void ParamsAction<TA, TB>(params (TA, TB)[] values);
Parameters
| Type | Name | Description |
|---|---|---|
| System.ValueTuple<TA, TB>[] | values | The param values. |
Type Parameters
| Name | Description |
|---|---|
| TA | The first type in the value tuples in the array. |
| TB | The second type in the value tuples in the array. |