BinaryDelegate<TArg1, TArg2, TResult> Delegate
.NET Framework (current version)
Describes a two-argument delegate. You use it to specify the arguments and return type of the delegate.
Assembly: Microsoft.VisualC.STLCLR (in Microsoft.VisualC.STLCLR.dll)
generic<typename TArg1, typename TArg2, typename TResult> public delegate TResult BinaryDelegate( TArg1 A_0, TArg2 A_1 )
Parameters
- A_0
-
Type:
TArg1
The first argument.
- A_1
-
Type:
TArg2
The second argument.
Return Value
Type: TResultThe return type of the delegate.
Type Parameters
- TArg1
The first delegate argument.
- TArg2
The second delegate argument.
- TResult
The return type of the delegate.
This delegate is the generic equivalent of the STL/CLR binary_delegate class. For more information, see binary_delegate (STL-CLR).
.NET Framework
Available since 3.5
Available since 3.5
Show: