NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TextWriter.Write (Char)

Writes a character to the text stream.

[Visual Basic]
Overloads Overridable Public Sub Write( _
   ByVal value As Char _
)
[C#]
public virtual void Write(
   char value
);
[C++]
public: virtual void Write(
   __wchar_t value
);
[JScript]
public function Write(
   value : Char
);

Parameters

value
The character to write to the text stream.

Exceptions

Exception Type Condition
IOException An I/O error occurs.

Remarks

This default method is empty, but derived classes can override the method to provide the appropriate functionality.

See Also

TextWriter Class | TextWriter Members | System.IO Namespace | TextWriter.Write Overload List