Delegate VoidT3<T, U, Z>
- Namespace
- SunamoDelegates
- Assembly
- SunamoDelegates.dll
Represents a method that takes three values of different types and returns void.
public delegate void VoidT3<T, U, Z>(T firstValue, U secondValue, Z thirdValue)
Parameters
firstValueTThe first value of type T.
secondValueUThe second value of type U.
thirdValueZThe third value of type Z.
Type Parameters
TThe type of the first value parameter.
UThe type of the second value parameter.
ZThe type of the third value parameter.
- Extension Methods