Delegate VoidStringTU<T, U>
- Namespace
- SunamoDelegates
- Assembly
- SunamoDelegates.dll
Represents a method that takes a string and two values of different types, and returns void.
public delegate void VoidStringTU<T, U>(string text, T firstValue, U secondValue)
Parameters
textstringThe input text.
firstValueTThe first value of type T.
secondValueUThe second value of type U.
Type Parameters
TThe type of the first value parameter.
UThe type of the second value parameter.
- Extension Methods