LineWrappingTextWriterWrite Method (Char, Int32, Int32) |
Writes a subarray of characters to the text stream.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic override void Write(
char[] buffer,
int index,
int count
)
Public Overrides Sub Write (
buffer As Char(),
index As Integer,
count As Integer
)
Dim instance As LineWrappingTextWriter
Dim buffer As Char()
Dim index As Integer
Dim count As Integer
instance.Write(buffer, index, count)
public:
virtual void Write(
array<wchar_t>^ buffer,
int index,
int count
) override
Parameters
- buffer
- Type: SystemChar
The character array to write data from. - index
- Type: SystemInt32
Starting index in the buffer. - count
- Type: SystemInt32
The number of characters to write.
Exceptions
See Also