Table of Contents

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

text string

The input text.

firstValue T

The first value of type T.

secondValue U

The second value of type U.

Type Parameters

T

The type of the first value parameter.

U

The type of the second value parameter.

Extension Methods