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, Object, Object)

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

[Visual Basic]
Overloads Public Shared Sub Write( _
   ByVal format As String, _
   ByVal arg0 As Object, _
   ByVal arg1 As Object _
)
[C#]
public static void Write(
   string format,
   object arg0,
   object arg1
);
[C++]
public: static void Write(
   String* format,
   Object* arg0,
   Object* arg1
);
[JScript]
public static function Write(
   format : String,
   arg0 : Object,
   arg1 : Object
);

Parameters

format
Formatting string.
arg0
Object to write into format string.
arg1
Object to write into format string.

Exceptions

Exception Type Condition
IOException An I/O error occured.

Remarks

This method uses the same semantics as Format.

See Also

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