ConverterWriter.Write method
The Write method writes converted characters to the output.
Overload list
Name | Description | |
---|---|---|
![]() |
Write(Char) | The Write method writes a single character into the destination TextWriter or Stream object that it owns. (Overrides TextWriter.Write(Char).) |
![]() |
Write([]) | The Write method converts buffer and writes it to the TextWriter or Stream object that this ConverterWriter owns. (Overrides TextWriter.Write([]).) |
![]() |
Write(String) | The Write method converts value and writes it to the TextWriter or Stream object that this ConverterWriter owns. (Overrides TextWriter.Write(String).) |
![]() |
Write([], Int32, Int32) | The Write method converts and writes count characters from buffer, starting at index, into the TextWriter or Stream that this ConverterWriter owns. (Overrides TextWriter.Write([], Int32, Int32).) |
Top