Perform an action on either type.

Namespace:  Sasa
Assembly:  Sasa (in Sasa.dll)

Syntax

Visual Basic (Declaration)
Public Sub Do ( _
	first As Action(Of F), _
	second As Action(Of S), _
	third As Action(Of T) _
)
C#
public void Do(
	Action<F> first,
	Action<S> second,
	Action<T> third
)
Visual C++
public:
void Do(
	Action<F>^ first, 
	Action<S>^ second, 
	Action<T>^ third
)
JavaScript
function do(first, second, third);

Parameters

first
Type: System..::.Action<(Of <(F>)>)
Function to apply if encapsulated value is of type F.
second
Type: System..::.Action<(Of <(S>)>)
Function to apply if encapsulated value is of type S.
third
Type: System..::.Action<(Of <(T>)>)
Function to apply if encapsulated value is of type T.

See Also