Represents a function of two input parameters.
Namespace:
Meta.NumericsAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 1.5.0.0 (1.5.0.0)
Syntax
| C# | Visual Basic | Visual C++ |
public delegate TOut Function<TIn1, TIn2, TOut>( TIn1 x1, TIn2 x2 )
Public Delegate Function Function(Of TIn1, TIn2, TOut) ( _ x1 As TIn1, _ x2 As TIn2 _ ) As TOut
generic<typename TIn1, typename TIn2, typename TOut> public delegate TOut Function( TIn1 x1, TIn2 x2 )
Parameters
- x1
- TIn1
The first input parameter.
- x2
- TIn2
The second input parameter.
Type Parameters
- TIn1
- The type of the first input aparameter.
- TIn2
- The type of the second input parameter.
- TOut
- The type of the output value.