TextWriter.WriteLine Method (Char[], Int32, Int32)
Assembly: mscorlib (in mscorlib.dll)
public void WriteLine ( char[] buffer, int index, int count )
public function WriteLine ( buffer : char[], index : int, count : int )
Not applicable.
Parameters
- buffer
The character array from which data is read.
- index
The index into buffer at which to begin reading.
- count
The maximum number of characters to write.
Return Value
Characters are read from buffer beginning at index and ending at index + count.| Exception type | Condition |
|---|---|
| The buffer length minus index is less than count. | |
| The buffer parameter is a null reference (Nothing in Visual Basic). | |
| index or count is negative. | |
| The TextWriter is closed. | |
| 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 method does not search the specified String for individual newline characters (hexadecimal 0x000a) and replace them with NewLine.
This version of WriteLine is equivalent to Write for each character in buffer between index and (index + count) followed by WriteLine .
For a list of common I/O tasks, see Common I/O Tasks.
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.