TextWriter::WriteLine Method (array<Char>^, Int32, Int32)
Writes a subarray of characters followed by a line terminator to the text string or stream.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- buffer
-
Type:
array<System::Char>^
The character array from which data is read.
- index
-
Type:
System::Int32
The character position in buffer at which to start reading data.
- count
-
Type:
System::Int32
The maximum number of characters to write.
| Exception | Condition |
|---|---|
| ArgumentException | The buffer length minus index is less than count. |
| ArgumentNullException | The buffer parameter is null. |
| ArgumentOutOfRangeException | index or count is negative. |
| ObjectDisposedException | The TextWriter is closed. |
| IOException | An I/O error occurs. |
This method will write count characters of data into this TextWriter from the buffer character array starting at position index.
This overload is equivalent to calling the Write(array<Char>^) method followed by WriteLine for each character in buffer between index and (index + count).
The line terminator is defined by the CoreNewLine field.
For a list of common I/O tasks, see Common I-O Tasks.
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1