Creates a synchronized wrapper around the specified TextWriter.
[Visual Basic] Public Shared Function Synchronized( _ ByVal t As TextWriter _ ) As TextWriter [C#] public static TextWriter Synchronized( TextWriter t ); [C++] public: static TextWriter* Synchronized( TextWriter* t ); [JScript] public static function Synchronized( t : TextWriter ) : TextWriter;
A synchronized TextWriter.
Exception Type | Condition |
---|---|
ArgumentNullException | t is null. |
[To be supplied.]