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 array to the text stream.

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

Parameters

buffer
The character array to write to the text stream.

Exceptions

Exception Type Condition
ArgumentNullException buffer is null.
IOException An I/O error occurs.

Remarks

This default method calls Write() for each of the characters in the character array. If the character array is null, nothing is written.

See Also

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