Mono Class Library: Overview

System.Console: Members

The members of System.Console are listed below.

See Also: Inherited members from System.Object

Public Properties

static
BackgroundColorConsoleColor. Documentation for this section has not yet been entered.
static
BufferHeightint. Documentation for this section has not yet been entered.
static
BufferWidthint. Documentation for this section has not yet been entered.
[read-only]
static
CapsLockbool. Documentation for this section has not yet been entered.
static
CursorLeftint. Documentation for this section has not yet been entered.
static
CursorSizeint. Documentation for this section has not yet been entered.
static
CursorTopint. Documentation for this section has not yet been entered.
static
CursorVisiblebool. Documentation for this section has not yet been entered.
[read-only]
static
ErrorSystem.IO.TextWriter. Gets the system's standard error output stream.
static
ForegroundColorConsoleColor. Documentation for this section has not yet been entered.
[read-only]
static
InSystem.IO.TextReader. Gets the system's standard input stream.
static
InputEncodingSystem.Text.Encoding. Documentation for this section has not yet been entered.
[read-only]
static
KeyAvailablebool. Documentation for this section has not yet been entered.
[read-only]
static
LargestWindowHeightint. Documentation for this section has not yet been entered.
[read-only]
static
LargestWindowWidthint. Documentation for this section has not yet been entered.
[read-only]
static
NumberLockbool. Documentation for this section has not yet been entered.
[read-only]
static
OutSystem.IO.TextWriter. Gets the system's standard output stream.
static
OutputEncodingSystem.Text.Encoding. Documentation for this section has not yet been entered.
static
Titlestring. Documentation for this section has not yet been entered.
static
TreatControlCAsInputbool. Documentation for this section has not yet been entered.
static
WindowHeightint. Documentation for this section has not yet been entered.
static
WindowLeftint. Documentation for this section has not yet been entered.
static
WindowTopint. Documentation for this section has not yet been entered.
static
WindowWidthint. Documentation for this section has not yet been entered.

Public Methods

static
Beep()
Documentation for this section has not yet been entered.
static
Beep(int, int)
Documentation for this section has not yet been entered.
static
Clear()
Documentation for this section has not yet been entered.
static
MoveBufferArea(int, int, int, int, int, int)
Documentation for this section has not yet been entered.
static
MoveBufferArea(int, int, int, int, int, int, char, ConsoleColor, ConsoleColor)
Documentation for this section has not yet been entered.
static
OpenStandardError() : System.IO.Stream
Returns the standard error stream.
static
OpenStandardError(int) : System.IO.Stream
Returns the standard error stream.
static
OpenStandardInput() : System.IO.Stream
Returns the standard input stream.
static
OpenStandardInput(int) : System.IO.Stream
Returns the standard input stream.
static
OpenStandardOutput() : System.IO.Stream
Returns the standard output stream.
static
OpenStandardOutput(int) : System.IO.Stream
Returns the standard output stream. The desired size of the internal buffer for the stream is specified.
static
Read() : int
Reads the next character from the standard input stream.
static
ReadKey() : ConsoleKeyInfo
Documentation for this section has not yet been entered.
static
ReadKey(bool) : ConsoleKeyInfo
Documentation for this section has not yet been entered.
static
ReadLine() : string
Reads the next line of characters from the Console.InSystem.IO.TextReader.
static
ResetColor()
Documentation for this section has not yet been entered.
static
SetBufferSize(int, int)
Documentation for this section has not yet been entered.
static
SetCursorPosition(int, int)
Documentation for this section has not yet been entered.
static
SetError(System.IO.TextWriter)
Sets the Console.Error property to the specified System.IO.TextWriter .
static
SetIn(System.IO.TextReader)
Sets the Console.In property to the specified System.IO.TextReader .
static
SetOut(System.IO.TextWriter)
Sets the Console.Out property to the specified System.IO.TextWriter .
static
SetWindowPosition(int, int)
Documentation for this section has not yet been entered.
static
SetWindowSize(int, int)
Documentation for this section has not yet been entered.
static
Write(bool)
Writes the text representation of a bool to the Console.OutSystem.IO.TextWriter .
static
Write(char)
Writes a character to the Console.OutSystem.IO.TextWriter .
static
Write(char[])
Writes a character array to the Console.OutSystem.IO.TextWriter .
static
Write(decimal)
Writes the text representation of a specified decimal to the Console.OutSystem.IO.TextWriter .
static
Write(double)
Writes the text representation of a specified double to the Console.OutSystem.IO.TextWriter .
static
Write(int)
Writes the text representation of a specified int to the Console.OutSystem.IO.TextWriter .
static
Write(long)
Writes the text representation of a specified long to the Console.OutSystem.IO.TextWriter .
static
Write(object)
Writes the text representation of a specified object to the Console.OutSystem.IO.TextWriter .
static
Write(float)
Writes the text representation of a specified float to the Console.OutSystem.IO.TextWriter .
static
Write(string)
Writes a specified string to the Console.OutSystem.IO.TextWriter .
static
Write(uint)
Writes the text representation of a specified uint to the Console.OutSystem.IO.TextWriter .
static
Write(ulong)
Writes the text representation of a specified ulong to the Console.OutSystem.IO.TextWriter .
static
Write(string, object)
Writes a formatted string to the Console.OutSystem.IO.TextWriter .
static
Write(string, params object[])
Writes a formatted string to the Console.OutSystem.IO.TextWriter .
static
Write(char[], int, int)
Writes a subarray of characters to the Console.OutSystem.IO.TextWriter .
static
Write(string, object, object)
Writes a formatted string to the Console.OutSystem.IO.TextWriter .
static
Write(string, object, object, object)
Writes a formatted string to the Console.OutSystem.IO.TextWriter .
static
Write(string, object, object, object, object)
Documentation for this section has not yet been entered.
static
WriteLine()
Writes a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(bool)
Writes the text representation of a bool followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(char)
Writes a character followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(char[])
Writes an array of characters followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(decimal)
Writes the text representation of a specified decimal followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(double)
Writes the text representation of a specified double followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(int)
Writes the text representation of a specified int followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(long)
Writes the text representation of a specified long followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(object)
Writes the text representation of a specified object followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(float)
Writes the text representation of a specified float followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(string)
Writes a specified string followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(uint)
Writes the text representation of a specified uint followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(ulong)
Writes the text representation of a specified ulong followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(string, object)
Writes a formatted string and a line terminator to the Console.OutSystem.IO.TextWriter.
static
WriteLine(string, params object[])
Writes a formatted string and a new line to the Console.OutSystem.IO.TextWriter .
static
WriteLine(char[], int, int)
Writes a subarray of characters followed by a line terminator to the Console.OutSystem.IO.TextWriter .
static
WriteLine(string, object, object)
Writes a formatted string and a new line to the Console.OutSystem.IO.TextWriter .
static
WriteLine(string, object, object, object)
Writes a formatted string and a new line to the Console.OutSystem.IO.TextWriter .
static
WriteLine(string, object, object, object, object)
Documentation for this section has not yet been entered.

Public Events

static
CancelKeyPressDocumentation for this section has not yet been entered.