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