CommandLineIOExtensionsWriteIndented(TextWriter, String, Int32, Boolean) - метод |
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,
bool indentFirstLine
)
<ExtensionAttribute>
Public Shared Sub WriteIndented (
output As TextWriter,
value As String,
indent As Integer,
indentFirstLine As Boolean
)
public:
[ExtensionAttribute]
static void WriteIndented(
TextWriter^ output,
String^ value,
int indent,
bool indentFirstLine
)
[<ExtensionAttribute>]
static member WriteIndented :
output : TextWriter *
value : string *
indent : int *
indentFirstLine : bool -> unit
Параметры
- output
- Тип: System.IOTextWriter
A TextWriter that represents an output stream. - value
- Тип: SystemString
The string to write. - indent
- Тип: SystemInt32
The space count to indent. - indentFirstLine
- Тип: SystemBoolean
Примечание об использовании
В Visual Basic и C# этот метод можно вызывать как метод экземпляра для любого объекта типа
TextWriter. При вызове метода для экземпляра следует опускать первый параметр. Дополнительные сведения см. в разделе
Методы расширения (Visual Basic) или
Методы расширения (Руководство по программированию в C#).
Исключения Заметки
If value is null, nothing is written to the text stream.
См. также