IndentedTextWriterWriteLine(String, Object) - метод
Writes out a formatted string and a new line to the text stream, using the same semantics as Format(String, Object).
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 4.0.4
public override void WriteLine(
string format,
params Object?[] arg
)
Public Overrides Sub WriteLine (
format As String,
ParamArray arg As Object()
)
public:
virtual void WriteLine(
String^ format,
... array<Object^>^ arg
) override
abstract WriteLine :
format : string *
arg : Object[] -> unit
override WriteLine :
format : string *
arg : Object[] -> unit
Параметры
- format String
- A composite format string.
- arg Object
- An object array that contains zero or more objects to format and write.
ArgumentNullException | A string or object is passed in as . |
ObjectDisposedException | The TextWriter is closed. |
IOException | An I/O error occurs. |
FormatException | format is not a valid composite format string.
-or-
The index of a format item is less than 0 (zero), or greater than or equal to the length of the arg array. |