WriteLine()

ConsoleOutput::WriteLine() method

Outputs the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine() override

ConsoleOutput::WriteLine(const SharedPtr<Object>&) method

Outputs the string representation of the specified object followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(const SharedPtr<Object> &value) override

Arguments

ParameterTypeDescription
valueconst SharedPtr<Object>&The object to output

ConsoleOutput::WriteLine(bool) method

Outputs the string representation of the specified bool value followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(bool value) override

Arguments

ParameterTypeDescription
valueboolThe object to output

ConsoleOutput::WriteLine(char_t) method

Outputs the specified character value followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(char_t value) override

Arguments

ParameterTypeDescription
valuechar_tThe value to output

ConsoleOutput::WriteLine(Decimal) method

Outputs the string representation of Decimal value followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(Decimal value) override

Arguments

ParameterTypeDescription
valueDecimalThe value to output

ConsoleOutput::WriteLine(double) method

Outputs the string representation of double-precision floating-point value followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(double value) override

Arguments

ParameterTypeDescription
valuedoubleThe value to output

ConsoleOutput::WriteLine(int) method

Outputs the string representation of 32-bit integer value followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(int value) override

Arguments

ParameterTypeDescription
valueintThe value to output

ConsoleOutput::WriteLine(int64_t) method

Outputs the string representation of 64-bit integer value followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(int64_t value) override

Arguments

ParameterTypeDescription
valueint64_tThe value to output

ConsoleOutput::WriteLine(float) method

Outputs the string representation of single-precision floating-point value followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(float value) override

Arguments

ParameterTypeDescription
valuefloatThe value to output

ConsoleOutput::WriteLine(const String&) method

Outputs the specified string object followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(const String &value) override

Arguments

ParameterTypeDescription
valueconst String&The string object to output

ConsoleOutput::WriteLine(uint32_t) method

Outputs the string representation of unsigned 32-bit integer value followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(uint32_t value) override

Arguments

ParameterTypeDescription
valueuint32_tThe value to output

ConsoleOutput::WriteLine(uint64_t) method

Outputs the string representation of unsigned 64-bit integer value followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(uint64_t value) override

Arguments

ParameterTypeDescription
valueuint64_tThe value to output

ConsoleOutput::WriteLine(const ArrayPtr<char_t>&) method

Outputs the string representation of the specified character array followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(const ArrayPtr<char_t> &buffer) override

Arguments

ParameterTypeDescription
bufferconst ArrayPtr<char_t>&The array to output

ConsoleOutput::WriteLine(const ArrayPtr<char_t>&, int32_t, int32_t) method

Outputs the string representation of a range of values of the specified character array followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(const ArrayPtr<char_t> &buffer, int32_t index, int32_t count) override

Arguments

ParameterTypeDescription
bufferconst ArrayPtr<char_t>&The array containing the values to output
indexint32_tThe index at which the range of elements to output begins
countint32_tThe number of elements in the range of elements to output

ConsoleOutput::WriteLine(const char_t *) method

Outputs the specified c-string followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(const char_t *value) override

Arguments

ParameterTypeDescription
valueconst char_t *The c-string to output

ConsoleOutput::WriteLine(const TypeInfo&) method

Outputs the string representation of the specified TypeInfo object followed by the current line terminator to the output stream represented by the current object.

void System::ConsoleOutput::WriteLine(const TypeInfo &value) override

Arguments

ParameterTypeDescription
valueconst TypeInfo&The TypeInfo object to output

ConsoleOutput::WriteLine(const char *) method

void System::ConsoleOutput::WriteLine(const char *)=delete

See Also