Documentation de Dvp.NET. Forum : http://www.developpez.net/forums/f1239/applications/projets/projets-heberges/dvp-net/

[Ceci est une documentation préliminaire, sous réserve de modification.]

Crée un wrapper qui reproduit la sortie d'un TextWriter sur le ou les autres TextWriters spécifiés.

Espace de nom : Developpez.Dotnet.IO
Assembly : Developpez.Dotnet (dans Developpez.Dotnet.dll) Version: 0.6.0.0 (0.6.0.0)

Syntaxe

C#
public static TextWriter Tee(
	this TextWriter writer,
	TextWriter other,
	params TextWriter[] others
)
Visual Basic (Déclaration)
<ExtensionAttribute> _
Public Shared Function Tee ( _
	writer As TextWriter, _
	other As TextWriter, _
	ParamArray others As TextWriter() _
) As TextWriter
Visual C++
public:
[ExtensionAttribute]
static TextWriter^ Tee(
	TextWriter^ writer, 
	TextWriter^ other, 
	... array<TextWriter^>^ others
)

Paramètres

writer
Type: System.IO..::..TextWriter
Premier TextWriter
other
Type: System.IO..::..TextWriter
Second TextWriter
others
Type: array<System.IO..::..TextWriter>[]()[][]
TextWriters supplémentaires

Valeur de retour

Un wrapper qui reproduit la sortie de writer sur les autres TextWriters.

Remarque sur l'utilisation

En Visual Basic et C#, vous pouvez appeler cette méthode comme une méthode d'instance sur n'importe quel objet de type TextWriter. Lorsque vous utilisez la syntaxe des méthodes d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez Méthodes d'extension (Visual Basic) ou Méthodes d'extension (Guide de programmation C#).

Voir aussi