Append | Appends a string to the current string value. |
AppendChar | Appends a character a specified number of times to the end of string value. |
AppendChars | Appends an array of characters to the end of the string value. |
AppendFormat | Appends a string with formatted arguments. |
AppendFormatEx | Appends a string with formatted arguments using the supplied provider. |
AppendLine | Appends the supplied string and a Carriage-Return/Linefeed to the end of the StringBuilder. |
AppendQuick | This function is designed to append strings quickly. |
AppendString | Appends a string to the current string value. |
CopyTo | Copies a set of characters from the StringBuilder into a character array. |
EnsureCapacity | Ensures that the internal buffer has atleast the requested amount. |
Equals | Returns a boolean indicating if the value and this object instance are the same instance. |
GetHashCode | Returns a pseudo-unique number identifying this instance. |
Insert | Inserts a string into the current string value. |
InsertChars | Inserts an array of characters into the string value. |
Remove | Removes a number of characters from the string value. |
Replace | Replaces a substring in the string value with a new string. |
ToString | Returns the current version of the string value. |