Console Class
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Represents the standard input, output, and error streams for console applications. This class cannot be inherited.
Assembly: mscorlib (in mscorlib.dll)
The Console type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | ReadLine | Infrastructure. Reads a line of characters from the console. |
![]() ![]() | SetError | Infrastructure. Security Critical. Sets the Error property. |
![]() ![]() | SetIn | Infrastructure. Security Critical. Sets the In property. |
![]() ![]() | SetOut | Infrastructure. Security Critical. Sets the Out property. |
![]() ![]() | Write(Char) | Infrastructure. Writes the specified Unicode character value to the standard output stream. |
![]() ![]() | Write(array<Char>) | Infrastructure. Writes the specified array of Unicode characters to the standard output stream. |
![]() ![]() | Write(Int32) | Infrastructure. Writes the text representation of the specified 32-bit signed integer value to the standard output stream. |
![]() ![]() | Write(Object) | Infrastructure. Writes the text representation of the specified object to the standard output stream. |
![]() ![]() | Write(String) | Infrastructure. Writes the specified string value to the standard output stream. |
![]() ![]() | Write(String, Object) | Infrastructure. Writes the text representation of the specified object to the standard output stream using the specified format information. |
![]() ![]() | Write(String, array<Object>) | Infrastructure. Writes the text representation of the specified array of objects to the standard output stream using the specified format information. |
![]() ![]() | Write(array<Char>, Int32, Int32) | Infrastructure. Writes the specified subarray of Unicode characters to the standard output stream. |
![]() ![]() | Write(String, Object, Object) | Infrastructure. Writes the text representation of the specified objects to the standard output stream using the specified format information. |
![]() ![]() | Write(String, Object, Object, Object) | Infrastructure. Writes the text representation of the specified objects to the standard output stream using the specified format information. |
![]() ![]() | WriteLine() | Infrastructure. Writes the current line terminator to the standard output stream. |
![]() ![]() | WriteLine(Char) | Infrastructure. Writes the specified Unicode character, followed by the current line terminator, value to the standard output stream. |
![]() ![]() | WriteLine(array<Char>) | Infrastructure. Writes the specified array of Unicode characters, followed by the current line terminator, to the standard output stream. |
![]() ![]() | WriteLine(Int32) | Infrastructure. Writes the text representation of the specified 32-bit signed integer value, followed by the current line terminator, to the standard output stream. |
![]() ![]() | WriteLine(Object) | Infrastructure. Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream. |
![]() ![]() | WriteLine(String) | Infrastructure. Writes the specified string value, followed by the current line terminator, to the standard output stream. |
![]() ![]() | WriteLine(String, Object) | Infrastructure. Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream using the specified format information. |
![]() ![]() | WriteLine(String, array<Object>) | Infrastructure. Writes the text representation of the specified array of objects, followed by the current line terminator, to the standard output stream using the specified format information. |
![]() ![]() | WriteLine(String, Object, Object) | Infrastructure. Writes the text representation of the specified objects, followed by the current line terminator, to the standard output stream using the specified format information. |
![]() ![]() | WriteLine(String, Object, Object, Object) | Infrastructure. Writes the text representation of the specified objects, followed by the current line terminator, to the standard output stream using the specified format information. |
Show:


