TextWriter.WriteLine Method (Char[])
.NET Framework (current version)
Writes an array of characters followed by a line terminator to the text string or stream.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- buffer
-
Type:
System.Char[]
The character array from which data is read.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The TextWriter is closed. |
| IOException | An I/O error occurs. |
All the characters in buffer are written to the underlying stream. If the character array is null, only the line terminator is written.
This overload is equivalent to Write(Char[]) followed by WriteLine() .
The line terminator is defined by the CoreNewLine field.
For a list of common I/O tasks, see Common I-O Tasks.
Universal Windows Platform
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
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
Show: