Skip to content

Latest commit

 

History

History
59 lines (52 loc) · 2.35 KB

System.Text.md

File metadata and controls

59 lines (52 loc) · 2.35 KB

System.Text


StringBuilderExtensions

Extensions for the System.Text.StringBuilder class.

public static class StringBuilderExtensions

Static Methods

Append

void Append(this StringBuilder sb, string format, object[] args)

Summary: Appends a formatting options to the string builder.

Parameters:
     sb  -  The .
     format  -  A composite format string.
     args  -  An object array that contains zero or more objects to format.

Append

void Append(this StringBuilder sb, int indentSpaces, string value)

Summary: Appends a formatting options to the string builder.

Parameters:
     sb  -  The .
     format  -  A composite format string.
     args  -  An object array that contains zero or more objects to format.

AppendLine

void AppendLine(this StringBuilder sb, string format, object[] args)

Summary: Appends a new line with formatting options to the string builder.

Parameters:
     sb  -  The .
     format  -  A composite format string.
     args  -  An object array that contains zero or more objects to format.

AppendLine

void AppendLine(this StringBuilder sb, int indentSpaces, string value)

Summary: Appends a new line with formatting options to the string builder.

Parameters:
     sb  -  The .
     format  -  A composite format string.
     args  -  An object array that contains zero or more objects to format.


Generated by MarkdownCodeDoc version 1.2