System::Console::Write method
Console::Write(bool) method
Outputs the string representation of bool value to the standard output stream.
static void System::Console::Write(bool value)
Parameter | Type | Description |
---|
value | bool | The value to output |
See Also
Console::Write(char_t) method
Outputs the specified character value to the standard output stream.
static void System::Console::Write(char_t value)
Parameter | Type | Description |
---|
value | char_t | The value to output |
See Also
Console::Write(const ArrayPtr<char_t>&) method
Outputs the string representation of the specified character array to the standard output stream.
static void System::Console::Write(const ArrayPtr<char_t> &buffer)
Parameter | Type | Description |
---|
buffer | const ArrayPtr<char_t>& | The array to output |
See Also
Console::Write(const ArrayPtr<char_t>&, int32_t, int32_t) method
Outputs the string representation of the specified range of the specified character array to the standard output stream.
static void System::Console::Write(const ArrayPtr<char_t> &buffer, int32_t index, int32_t count)
Parameter | Type | Description |
---|
buffer | const ArrayPtr<char_t>& | The character array |
index | int32_t | The index in the array at which the range to output begins |
count | int32_t | The number of elements in the range to output |
See Also
Console::Write(const char *) method
static void System::Console::Write(const char *)=delete
See Also
Console::Write(const char_t *) method
Outputs the specified c-string to the standard output stream.
static void System::Console::Write(const char_t *value)
Parameter | Type | Description |
---|
value | const char_t * | The c-string to output |
See Also
Console::Write(const Decimal&) method
Outputs the string representation of Decimal value to the standard output stream.
static void System::Console::Write(const Decimal &value)
Parameter | Type | Description |
---|
value | const Decimal& | The value to output |
See Also
Console::Write(const SharedPtr<T>&) method
Outputs the string representation of the specified object to the standard output stream.
template<class T> static void System::Console::Write(const SharedPtr<T> &object)
Parameter | Description |
---|
T | Type of the object to output |
Parameter | Type | Description |
---|
object | const SharedPtr<T>& | Object to output |
See Also
Console::Write(const String&, Args&&…) method
Outputs the string representation of the specified arguments formatted according to the specified format to the standard output stream.
template<class...> static void System::Console::Write(const String &format, Args &&... args)
Parameter | Description |
---|
The | types of the values to output |
Parameter | Type | Description |
---|
format | const String& | The string format |
args | Args&&… | The values to output |
See Also
Console::Write(const String&) method
Outputs the specified string object to the standard output stream.
static void System::Console::Write(const String &value)
Parameter | Type | Description |
---|
value | const String& | The string object to output |
See Also
Console::Write(const TypeInfo&) method
Outputs the string representation of TypeInfo value to the standard output stream.
static void System::Console::Write(const TypeInfo &value)
Parameter | Type | Description |
---|
value | const TypeInfo& | The value to output |
See Also
Console::Write(double) method
Outputs the string representation of double-precision floating-point value to the standard output stream.
static void System::Console::Write(double value)
Parameter | Type | Description |
---|
value | double | The value to output |
See Also
Console::Write(float) method
Outputs the string representation of single-precision floating-point value to the standard output stream.
static void System::Console::Write(float value)
Parameter | Type | Description |
---|
value | float | The value to output |
See Also
Console::Write(int32_t) method
Outputs the string representation of 32-bit integer value to the standard output stream.
static void System::Console::Write(int32_t value)
Parameter | Type | Description |
---|
value | int32_t | The value to output |
See Also
Console::Write(int64_t) method
Outputs the string representation of 64-bit integer value to the standard output stream.
static void System::Console::Write(int64_t value)
Parameter | Type | Description |
---|
value | int64_t | The value to output |
See Also
Console::Write(uint32_t) method
Outputs the string representation of unsigned 32-bit integer value to the standard output stream.
static void System::Console::Write(uint32_t value)
Parameter | Type | Description |
---|
value | uint32_t | The value to output |
See Also
Console::Write(uint64_t) method
Outputs the string representation of unsigned 64-bit integer value to the standard output stream.
static void System::Console::Write(uint64_t value)
Parameter | Type | Description |
---|
value | uint64_t | The value to output |
See Also