[This is preliminary documentation and is subject to change.]
Universal delegate of function with 3 arguments
Namespace: ToolsAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
[ObsoleteAttribute("Use System.Func instead")] [EditorBrowsableAttribute(EditorBrowsableState.Never)] public delegate TRet dFunction<TRet, T1, T2, T3>( T1 arg1, T2 arg2, T3 arg3 ) |
| Visual Basic |
|---|
<ObsoleteAttribute("Use System.Func instead")> _ <EditorBrowsableAttribute(EditorBrowsableState.Never)> _ Public Delegate Function dFunction(Of TRet, T1, T2, T3) ( _ arg1 As T1, _ arg2 As T2, _ arg3 As T3 _ ) As TRet |
| Visual C++ |
|---|
[ObsoleteAttribute(L"Use System.Func instead")] [EditorBrowsableAttribute(EditorBrowsableState::Never)] generic<typename TRet, typename T1, typename T2, typename T3> public delegate TRet dFunction( T1 arg1, T2 arg2, T3 arg3 ) |
| F# |
|---|
[<ObsoleteAttribute("Use System.Func instead")>] [<EditorBrowsableAttribute(EditorBrowsableState.Never)>] type dFunction = delegate of arg1:'T1 * arg2:'T2 * arg3:'T3 -> 'TRet |
| JScript |
|---|
|
Parameters
- arg1
- Type: T1
First argument
- arg2
- Type: T2
Second argument
- arg3
- Type: T3
Third argument
Type Parameters
- TRet
- Type of return value
- T1
- Type of first argument
- T2
- Type of second argument
- T3
- Type of third argument