Provides methods for outputting data to the standard output stream. This is a static type with no instance services. You should never create instances of it by any means.
More...
|
template<class T > |
static void | Write (const SharedPtr< T > &object) |
| Outputs the string representation of the specified object to the standard output stream. More...
|
|
static void | Write (bool value) |
| Outputs the string representation of bool value to the standard output stream. More...
|
|
static void | Write (char_t value) |
| Outputs the specified character value to the standard output stream. More...
|
|
static void | Write (const ArrayPtr< char_t > &buffer) |
| Outputs the string representation of the specified character array to the standard output stream. More...
|
|
static void | Write (const Decimal &value) |
| Outputs the string representation of Decimal value to the standard output stream. More...
|
|
static void | Write (double value) |
| Outputs the string representation of double-precision floating-point value to the standard output stream. More...
|
|
static void | Write (float value) |
| Outputs the string representation of single-precision floating-point value to the standard output stream. More...
|
|
static void | Write (int32_t value) |
| Outputs the string representation of 32-bit integer value to the standard output stream. More...
|
|
static void | Write (int64_t value) |
| Outputs the string representation of 64-bit integer value to the standard output stream. More...
|
|
static void | Write (const String &value) |
| Outputs the specified string object to the standard output stream. More...
|
|
static void | Write (const char_t *value) |
| Outputs the specified c-string to the standard output stream. More...
|
|
static void | Write (const TypeInfo &value) |
| Outputs the string representation of TypeInfo value to the standard output stream. More...
|
|
static void | Write (uint32_t value) |
| Outputs the string representation of unsigned 32-bit integer value to the standard output stream. More...
|
|
static void | Write (uint64_t value) |
| Outputs the string representation of unsigned 64-bit integer value to the standard output stream. More...
|
|
static void | Write (const ArrayPtr< char_t > &buffer, int32_t index, int32_t count) |
| Outputs the string representation of the specified range of the specified character array to the standard output stream. More...
|
|
template<class... Args> |
static void | Write (const String &format, Args &&... args) |
| Outputs the string representation of the specified arguments formatted according to the specified format to the standard output stream. More...
|
|
static void | WriteLine () |
| Outputs the current line terminator to the standard output stream. More...
|
|
template<class T > |
static void | WriteLine (const SharedPtr< T > &object) |
| Outputs the string representation of the specified object followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (bool value) |
| Outputs the string representation of bool value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (char_t value) |
| Outputs the specified character value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (const ArrayPtr< char_t > &buffer) |
| Outputs the string representation of the specified character array followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (const Decimal &value) |
| Outputs the string representation of Decimal value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (double value) |
| Outputs the string representation of double-precision floating-point value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (float value) |
| Outputs the string representation of single-precision floating-point value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (int32_t value) |
| Outputs the string representation of 32-bit integer value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (int64_t value) |
| Outputs the string representation of 64-bit integer value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (const String &value) |
| Outputs the specified string object followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (const char_t *value) |
| Outputs the specified c-string followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (const TypeInfo &value) |
| Outputs the string representation of TypeInfo value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (uint32_t value) |
| Outputs the string representation of unsigned 32-bit integer value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (uint64_t value) |
| Outputs the string representation of unsigned 64-bit integer value followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (const ArrayPtr< char_t > &buffer, int index, int count) |
| Outputs the string representation of the specified range of the specified character array followed by the current line terminator to the standard output stream. More...
|
|
static void | WriteLine (const Exception &e) |
| Outputs the string representation of the specified Exception object followed by the current line terminator to the standard output stream. More...
|
|
template<class... Args> |
static void | WriteLine (const String &format, Args &&... args) |
| Outputs the string representation of the specified arguments formatted according to the specified format followed by the current line terminator to the standard output stream. More...
|
|
static void | Write (const char *)=delete |
|
static void | WriteLine (const char *)=delete |
|
static void | Beep () |
| NOT IMPLEMENTED. More...
|
|
static SharedPtr< System::IO::TextWriter > & | get_Out () |
| Returns a shared pointer pointing to the object that represents the standard output stream. More...
|
|
static SharedPtr< System::IO::TextWriter > & | get_Error () |
| Returns a shared pointer pointing to the object that represents the standard error stream. More...
|
|
static SharedPtr< System::IO::TextReader > & | get_In () |
| Returns a shared pointer pointing to the object that represents the standard input stream. More...
|
|
static void | SetOut (const SharedPtr< System::IO::TextWriter > &value) |
| Assigns the specified object to the class' Out property. More...
|
|
static void | SetError (const SharedPtr< System::IO::TextWriter > &value) |
| Assigns the specified object to the class' Error property. More...
|
|
static void | SetIn (const SharedPtr< System::IO::TextReader > &value) |
| Sets the In property to the specified TextReader object. More...
|
|
static void | Mute (bool muted) |
| Mutes or unmutes the standard output stream. More...
|
|
static void | ReadKey () |
| NOT IMPLEMENTED. More...
|
|
Provides methods for outputting data to the standard output stream. This is a static type with no instance services. You should never create instances of it by any means.
#include "system/console.h"
#include <array>
int main()
{
std::array<int, 5> arr = {1, 2, 3, 4, 5};
for (auto el: arr)
{
}
return 0;
}
static void WriteLine()
Outputs the current line terminator to the standard output stream.
static void Write(const SharedPtr< T > &object)
Outputs the string representation of the specified object to the standard output stream.
Definition: console.h:56
Definition: db_command.h:9