Documentation de Dvp.NET. Forum : http://www.developpez.net/forums/f1239/applications/projets/projets-heberges/dvp-net/
Assembly : Developpez.Dotnet (dans Developpez.Dotnet.dll) Version: 0.6.0.0 (0.6.0.0)
[Ceci est une documentation préliminaire, sous réserve de modification.]
Renvoie une version curryfiée de l'action
Espace de nom : Developpez.DotnetAssembly : Developpez.Dotnet (dans Developpez.Dotnet.dll) Version: 0.6.0.0 (0.6.0.0)
Syntaxe
C# |
---|
public static Func<T1, Func<T2, Func<T3, Action<T4>>>> Curry<T1, T2, T3, T4>( this Action<T1, T2, T3, T4> action ) |
Visual Basic (Déclaration) |
---|
<ExtensionAttribute> _ Public Shared Function Curry(Of T1, T2, T3, T4) ( _ action As Action(Of T1, T2, T3, T4) _ ) As Func(Of T1, Func(Of T2, Func(Of T3, Action(Of T4)))) |
Visual C++ |
---|
public: [ExtensionAttribute] generic<typename T1, typename T2, typename T3, typename T4> static Func<T1, Func<T2, Func<T3, Action<T4>^>^>^>^ Curry( Action<T1, T2, T3, T4>^ action ) |
Paramètres
- action
- Type: System..::..Action<(Of <(<'T1, T2, T3, T4>)>)>
L'action à curryfier
Paramètres de type
- T1
- Le type du paramètre 1
- T2
- Le type du paramètre 2
- T3
- Le type du paramètre 3
- T4
- Le type du paramètre 4