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.WriteLine (Int32)

[To be supplied.]

[Visual Basic]
Overloads Public Shared Sub WriteLine( _
   ByVal value As Integer _
)
[C#]
public static void WriteLine(
   int value
);
[C++]
public: static void WriteLine(
   int value
);
[JScript]
public static function WriteLine(
   value : int
);

Parameters

value
The integer to write.

Exceptions

Exception Type Condition
IOException An I/O error occured.

Remarks

The default line terminator is a carriage return followed by a line feed ("\r\n"). The line terminator can be modified via the NewLine property of Console.Out.

See Also

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