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 (String)

Writes a string to Out that is set to the system's standard output stream by default.

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

Parameters

value
The string to write.

Exceptions

Exception Type Condition
IOException An I/O error occured.

Remarks

If value is null, nothing is written to the output stream.

See Also

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