Delegate similar to that in .Net 3.5

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

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

- o1 (TInput1)
- o2 (TInput2)
