IndentedTextWriterWrite(String, Object) - метод
Writes a formatted string to the text stream, using the same semantics as the Format(String, Object) method.
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 4.0.4
public override void Write(
string format,
params Object?[] arg
)
Public Overrides Sub Write (
format As String,
ParamArray arg As Object()
)
public:
virtual void Write(
String^ format,
... array<Object^>^ arg
) override
abstract Write :
format : string *
arg : Object[] -> unit
override Write :
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 | format or arg is . |
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. |