CommandLineIOExtensionsWriteIndented(TextWriter, String, Int32) - метод
Writes a string to the text string or stream with indentation of every line of the string.
Пространство имён: Tessa.Platform.CommandLineСборка: Tessa (в Tessa.dll) Версия: 3.6.0.22
public static void WriteIndented(
this TextWriter output,
string value,
int indent
)
<ExtensionAttribute>
Public Shared Sub WriteIndented (
output As TextWriter,
value As String,
indent As Integer
)
public:
[ExtensionAttribute]
static void WriteIndented(
TextWriter^ output,
String^ value,
int indent
)
[<ExtensionAttribute>]
static member WriteIndented :
output : TextWriter *
value : string *
indent : int -> unit
- output TextWriter
- A TextWriter that represents an output stream.
- value String
- The string to write.
- indent Int32
- The space count to indent.
В Visual Basic и C# этот метод можно вызывать как метод экземпляра для любого объекта типа
TextWriter. При вызове метода для экземпляра следует опускать первый параметр. Дополнительные сведения см. в разделе
Методы расширения (Visual Basic) или
Методы расширения (Руководство по программированию в C#).
If value is null, nothing is written to the text stream.
ArgumentNullException | output is null. |
ArgumentOutOfRangeException | indent is less than zero. |