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,
Object? arg0
)
Public Overrides Sub Write (
format As String,
arg0 As Object
)
public:
virtual void Write(
String^ format,
Object^ arg0
) override
abstract Write :
format : string *
arg0 : Object -> unit
override Write :
format : string *
arg0 : Object -> unit
Параметры
- format String
- A composite format string.
- arg0 Object
- The object to format and write.
ArgumentNullException | format 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 number of objects to be formatted (which, for this method overload, is one). |