The StringBuilderExtension type exposes the following members.

Methods

  Name Description
Public method Static member AppendAt
Appends the source string builder to the end of this instance.
Public method Static member Contains(StringBuilder, Char)
Returns a value indicating whether the specified System.Char object occurs within this StringBuilder. (Invariant culture, Ignore case).
Public method Static member Contains(StringBuilder, String)
Returns a value indicating whether the specified System.String object occurs within this StringBuilder. (Invariant culture, Ignore case).
Public method Static member IndexOf(StringBuilder, Char)
Gets the index of the character specified (Invariant culture, Ignore case).
Public method Static member IndexOf(StringBuilder, String)
Gets the index of the string specified (Invariant culture, Ignore case).
Public method Static member IndexOf(StringBuilder, String, Int32)
Gets the index of the string specified (Invariant culture, Ignore case).
Public method Static member LastIndexOf(StringBuilder, String)
Reports the zero-based index position of the last occurrence of a specified string within this instance. Parameters specify the starting search position in the current string, the number of characters in the current string to search, and the type of search to use for the specified string. (Invariant culture, Ignore case).
Public method Static member LastIndexOf(StringBuilder, String, Int32)
Reports the zero-based index position of the last occurrence of a specified string within this instance. Parameters specify the starting search position in the current string, the number of characters in the current string to search, and the type of search to use for the specified string. (Invariant culture, Ignore case).
Public method Static member Replace(StringBuilder, String, StringBuilder)
Replaces all occurrences of a specified string in this instance with another specified string builder content.
Public method Static member Replace(StringBuilder, String, String, StringComparison)
Replaces all occurrences of a specified string in this instance with another specified string builder content.
Public method Static member Substring(StringBuilder, Int32)
Retrieves a substring from this instance. The substring starts at a specified character position.
Public method Static member Substring(StringBuilder, Int32, Int32)
Retrieves a substring from this instance. The substring starts at a specified character position.
Public method Static member ToChars(StringBuilder)
Converts the value of this instance to a Char array.
Public method Static member ToChars(StringBuilder, Int32, Int32)
Converts the value of this instance to a Char array.

See Also