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!

Console.Write (Char)

Writes a character to Console.Outthat is set to the system's standard output stream by default.

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

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

Parameters

value
The character to write to the text stream.

Exceptions

Exception Type Condition
IOException An I/O error occured.

See Also

Console Class | Console Members | System Namespace | Console.Write Overload List