Extensions for the System.Text.StringBuilder
class.
public static class StringBuilderExtensions
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.
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.
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.
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.