TextWriter.WriteLine Method (String, Object[])
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Writes out a formatted string and a new line, using the same semantics as Format.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- format
- Type: System.String
The formatting string.
- arg
- Type:
System.Object
[]
The object array to write into format string.
| Exception | Condition |
|---|---|
| ArgumentNullException | A string or object is passed in as null. |
| ObjectDisposedException | The TextWriter is closed. |
| IOException | An I/O error occurs. |
| FormatException | The format specification in format is invalid. -or- The number indicating an argument to be formatted is less than zero, or larger than or equal to arg.Length. |
Show: