Delegate ActionOut2<T1, T2, T3, T4>
Generic delegate with 2 out parameters
Namespace: Microsoft.ML.Probabilistic.Models
Assembly: Microsoft.ML.Probabilistic.Compiler.dll
Syntax
public delegate void ActionOut2<in T1, in T2, T3, T4>(T1 arg1, T2 arg2, out T3 arg3, out T4 arg4);
Parameters
Type | Name | Description |
---|---|---|
T1 | arg1 | First argument |
T2 | arg2 | Second argument |
T3 | arg3 | Third argument |
T4 | arg4 | Fourth argument |
Type Parameters
Name | Description |
---|---|
T1 | Type of first argument |
T2 | Type of second argument |
T3 | Type of third argument |
T4 | Type of fourth argument |