Console.Write Method
.NET Framework 2.0
Writes the text representation of the specified value or values to the standard output stream.
| Name | Description |
|---|---|
| Console.Write (Boolean) | Writes the text representation of the specified Boolean value to the standard output stream. |
| Console.Write (Char) | Writes the specified Unicode character value to the standard output stream. Supported by the .NET Compact Framework. |
| Console.Write (Char[]) | Writes the specified array of Unicode characters to the standard output stream. Supported by the .NET Compact Framework. |
| Console.Write (Decimal) | Writes the text representation of the specified Decimal value to the standard output stream. |
| Console.Write (Double) | Writes the text representation of the specified double-precision floating-point value to the standard output stream. |
| Console.Write (Int32) | Writes the text representation of the specified 32-bit signed integer value to the standard output stream. Supported by the .NET Compact Framework. |
| Console.Write (Int64) | Writes the text representation of the specified 64-bit signed integer value to the standard output stream. |
| Console.Write (Object) | Writes the text representation of the specified object to the standard output stream. Supported by the .NET Compact Framework. |
| Console.Write (Single) | Writes the text representation of the specified single-precision floating-point value to the standard output stream. |
| Console.Write (String) | Writes the specified string value to the standard output stream. Supported by the .NET Compact Framework. |
| Console.Write (UInt32) | Writes the text representation of the specified 32-bit unsigned integer value to the standard output stream. |
| Console.Write (UInt64) | Writes the text representation of the specified 64-bit unsigned integer value to the standard output stream. |
| Console.Write (String, Object) | Writes the text representation of the specified object to the standard output stream using the specified format information. Supported by the .NET Compact Framework. |
| Console.Write (String, Object[]) | Writes the text representation of the specified array of objects to the standard output stream using the specified format information. Supported by the .NET Compact Framework. |
| Console.Write (Char[], Int32, Int32) | Writes the specified subarray of Unicode characters to the standard output stream. Supported by the .NET Compact Framework. |
| Console.Write (String, Object, Object) | Writes the text representation of the specified objects to the standard output stream using the specified format information. Supported by the .NET Compact Framework. |
| Console.Write (String, Object, Object, Object) | Writes the text representation of the specified objects to the standard output stream using the specified format information. Supported by the .NET Compact Framework. |
| Console.Write (String, Object, Object, Object, Object) | Writes the text representation of the specified objects and variable length parameter list to the standard output stream using the specified format information. |