Skip to content

Latest commit

 

History

History
79 lines (72 loc) · 3.33 KB

File metadata and controls

79 lines (72 loc) · 3.33 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.

AppendLine

void AppendLine(this StringBuilder sb, char 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.

AppendLine

void AppendLine(this StringBuilder sb, int indentSpaces, char 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