Write()

ConsoleOutput::Write(bool) method

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

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

Arguments

ParameterTypeDescription
valueboolThe value to output

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

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

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

Arguments

ParameterTypeDescription
valueconst SharedPtr<Object>&The object to output

ConsoleOutput::Write(char_t) method

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

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

Arguments

ParameterTypeDescription
valuechar_tThe value to output

ConsoleOutput::Write(Decimal) method

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

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

Arguments

ParameterTypeDescription
valueDecimalThe value to output

ConsoleOutput::Write(double) method

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

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

Arguments

ParameterTypeDescription
valuedoubleThe value to output

ConsoleOutput::Write(int32_t) method

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

void System::ConsoleOutput::Write(int32_t value) override

Arguments

ParameterTypeDescription
valueint32_tThe value to output

ConsoleOutput::Write(int64_t) method

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

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

Arguments

ParameterTypeDescription
valueint64_tThe value to output

ConsoleOutput::Write(float) method

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

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

Arguments

ParameterTypeDescription
valuefloatThe value to output

ConsoleOutput::Write(const String&) method

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

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

Arguments

ParameterTypeDescription
valueconst String&The string object to output

ConsoleOutput::Write(uint32_t) method

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

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

Arguments

ParameterTypeDescription
valueuint32_tThe value to output

ConsoleOutput::Write(uint64_t) method

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

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

Arguments

ParameterTypeDescription
valueuint64_tThe value to output

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

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

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

Arguments

ParameterTypeDescription
bufferconst ArrayPtr<char_t>&The array to output

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

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

void System::ConsoleOutput::Write(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::Write(const char_t *) method

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

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

Arguments

ParameterTypeDescription
valueconst char_t *The c-string to output

ConsoleOutput::Write(const TypeInfo&) method

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

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

Arguments

ParameterTypeDescription
valueconst TypeInfo&The TypeInfo object to output

ConsoleOutput::Write(const char *) method

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

See Also