System::Console::WriteLine method
Console::WriteLine() method
Outputs the current line terminator to the standard output stream.
static void System::Console::WriteLine()
See Also
Console::WriteLine(bool) method
Outputs the string representation of bool value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(bool value)
Parameter | Type | Description |
---|
value | bool | The value to output |
See Also
Console::WriteLine(char_t) method
Outputs the specified character value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(char_t value)
Parameter | Type | Description |
---|
value | char_t | The value to output |
See Also
Console::WriteLine(const ArrayPtr<char_t>&) method
Outputs the string representation of the specified character array followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(const ArrayPtr<char_t> &buffer)
Parameter | Type | Description |
---|
buffer | const ArrayPtr<char_t>& | The array to output |
See Also
Console::WriteLine(const ArrayPtr<char_t>&, int, int) method
Outputs the string representation of the specified range of the specified character array followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(const ArrayPtr<char_t> &buffer, int index, int count)
Parameter | Type | Description |
---|
buffer | const ArrayPtr<char_t>& | The character array |
index | int | The index in the array at which the range to output begins |
count | int | The number of elements in the range to output |
See Also
Console::WriteLine(const char *) method
static void System::Console::WriteLine(const char *)=delete
See Also
Console::WriteLine(const char_t *) method
Outputs the specified c-string followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(const char_t *value)
Parameter | Type | Description |
---|
value | const char_t * | The c-string to output |
See Also
Console::WriteLine(const Decimal&) method
Outputs the string representation of Decimal value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(const Decimal &value)
Parameter | Type | Description |
---|
value | const Decimal& | The value to output |
See Also
Console::WriteLine(const Exception&) method
Outputs the string representation of the specified Exception object followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(const Exception &e)
Parameter | Type | Description |
---|
e | const Exception& | The value to output |
See Also
Console::WriteLine(const SharedPtr<T>&) method
Outputs the string representation of the specified object followed by the current line terminator to the standard output stream.
template<class T> static void System::Console::WriteLine(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::WriteLine(const String&, Args&&…) method
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.
template<class...> static void System::Console::WriteLine(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::WriteLine(const String&) method
Outputs the specified string object followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(const String &value)
Parameter | Type | Description |
---|
value | const String& | The string object to output |
See Also
Console::WriteLine(const TypeInfo&) method
Outputs the string representation of TypeInfo value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(const TypeInfo &value)
Parameter | Type | Description |
---|
value | const TypeInfo& | The value to output |
See Also
Console::WriteLine(double) method
Outputs the string representation of double-precision floating-point value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(double value)
Parameter | Type | Description |
---|
value | double | The value to output |
See Also
Console::WriteLine(float) method
Outputs the string representation of single-precision floating-point value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(float value)
Parameter | Type | Description |
---|
value | float | The value to output |
See Also
Console::WriteLine(int32_t) method
Outputs the string representation of 32-bit integer value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(int32_t value)
Parameter | Type | Description |
---|
value | int32_t | The value to output |
See Also
Console::WriteLine(int64_t) method
Outputs the string representation of 64-bit integer value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(int64_t value)
Parameter | Type | Description |
---|
value | int64_t | The value to output |
See Also
Console::WriteLine(uint32_t) method
Outputs the string representation of unsigned 32-bit integer value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(uint32_t value)
Parameter | Type | Description |
---|
value | uint32_t | The value to output |
See Also
Console::WriteLine(uint64_t) method
Outputs the string representation of unsigned 64-bit integer value followed by the current line terminator to the standard output stream.
static void System::Console::WriteLine(uint64_t value)
Parameter | Type | Description |
---|
value | uint64_t | The value to output |
See Also