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

Writes the text representation of a single to Out that is set to the system's standard output stream by default.

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

Parameters

value
The single to write.

Exceptions

Exception Type Condition
IOException An I/O error occured.

Remarks

The text representation of the given value is produced by calling ToString. Uses the invariant CultureInfo representation (The same applies for all the ones below).

See Also

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