Represents standard I/O streams stdin , stdout and stderr .
static | Console() |
public static nothrow StreamWriter& | Error() |
public static nothrow StreamReader& | In() |
public static nothrow StreamWriter& | Out() |
public static int | Read() |
public static String<char> | ReadLine() |
public static String<char> | ReadToEnd() |
public static nothrow void | SetError(StreamWriter&& err_) |
public static nothrow void | SetIn(StreamReader&& in_) |
public static nothrow void | SetOut(StreamWriter&& out_) |
public static void | Write(bool b) |
public static void | Write(byte b) |
public static void | Write(char c) |
public static void | Write(const Date& date) |
public static void | Write(const DateTime& dateTime) |
public static void | Write(const String<char>& s) |
public static void | Write(const String<uchar>& s) |
public static void | Write(const String<wchar>& s) |
public static void | Write(const char* s) |
public static void | Write(const uchar* s) |
public static void | Write(const wchar* s) |
public static void | Write(double d) |
public static void | Write(float f) |
public static void | Write(int i) |
public static void | Write(long l) |
public static void | Write(sbyte s) |
public static void | Write(short s) |
public static void | Write(uchar u) |
public static void | Write(uint u) |
public static void | Write(ulong u) |
public static void | Write(ushort u) |
public static void | Write(wchar w) |
public static void | WriteLine() |
public static void | WriteLine(bool b) |
public static void | WriteLine(byte b) |
public static void | WriteLine(char c) |
public static void | WriteLine(const Date& date) |
public static void | WriteLine(const DateTime& dateTime) |
public static void | WriteLine(const String<char>& s) |
public static void | WriteLine(const String<uchar>& s) |
public static void | WriteLine(const String<wchar>& s) |
public static void | WriteLine(const char* s) |
public static void | WriteLine(const uchar* s) |
public static void | WriteLine(const wchar* s) |
public static void | WriteLine(double d) |
public static void | WriteLine(float f) |
public static void | WriteLine(int i) |
public static void | WriteLine(long l) |
public static void | WriteLine(sbyte s) |
public static void | WriteLine(short s) |
public static void | WriteLine(uchar u) |
public static void | WriteLine(uint u) |
public static void | WriteLine(ulong u) |
public static void | WriteLine(ushort u) |
public static void | WriteLine(wchar w) |
private static StreamWriter | err |
private static StreamReader | in |
private static StreamWriter | out |