TextWriter.WriteLine Method (String, Object, 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.
- arg0
- Type: System.Object
The object to write into the format string.
- arg1
- Type: System.Object
The object to write into the format string.
| Exception | Condition |
|---|---|
| ArgumentNullException | format is 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 the number of provided objects to be formatted. |
Show: