An Action that accepts two input and returns nothing

C# | Visual Basic | Visual C++ |
public delegate void Action<TInput1, TInput2>( TInput1 o1, TInput2 o2 )
Public Delegate Sub Action(Of TInput1, TInput2) ( _ o1 As TInput1, _ o2 As TInput2 _ )
generic<typename TInput1, typename TInput2> public delegate void Action( TInput1 o1, TInput2 o2 )

- TInput1
[Missing <typeparam name="TInput1"/> documentation for "T:Emgu.Util.Toolbox.Action`2"]
- TInput2
[Missing <typeparam name="TInput2"/> documentation for "T:Emgu.Util.Toolbox.Action`2"]

- o1 (TInput1)
- The first input parameter
- o2 (TInput2)
- The second input parameter