Для изменения размера нажмите или перетащите

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.5.0.19
Синтаксис
public static void WriteIndented(
	this TextWriter output,
	string value,
	int indent
)

Параметры

output
Тип: System.IOTextWriter
A TextWriter that represents an output stream.
value
Тип: SystemString
The string to write.
indent
Тип: SystemInt32
The space count to indent.

Примечание об использовании

В Visual Basic и C# этот метод можно вызывать как метод экземпляра для любого объекта типа TextWriter. При вызове метода для экземпляра следует опускать первый параметр. Дополнительные сведения см. в разделе Методы расширения (Visual Basic) или Методы расширения (Руководство по программированию в C#).
Исключения
ИсключениеУсловие
ArgumentNullExceptionoutput is null.
ArgumentOutOfRangeExceptionindent is less than zero.
Заметки
If value is null, nothing is written to the text stream.
См. также