| Append(bool) : StringBuilderAppends the string representation of a bool to the end of the current
instance. |
| Append(byte) : StringBuilderAppends the string representation of a byte to the end of the current instance. |
| Append(char) : StringBuilderAppends the string representation of a Unicode character to the end of the
current instance. |
| Append(char[]) : StringBuilder Appends the string representation of all of the
characters in a Array to the end of the
current instance.
|
| Append(decimal) : StringBuilderAppends the string representation of a decimal to
the end of the current instance. |
| Append(double) : StringBuilderAppends the string representation of a double
to the end of the current instance. |
| Append(short) : StringBuilderAppends the string representation of a short to the end of the current
instance. |
| Append(int) : StringBuilderAppends the string representation of a int to the end of the current
instance. |
| Append(long) : StringBuilderAppends the string representation of a long to the end of the current
instance. |
| Append(object) : StringBuilderAppends the string representation of an object to the end of the current
instance. |
| Append(sbyte) : StringBuilderAppends the string representation of a sbyte to the end of the current
instance. |
| Append(float) : StringBuilderAppends the string representation of a float
to the end of the current instance. |
| Append(string) : StringBuilderAppends a copy of a string to the end of the current instance. |
| Append(ushort) : StringBuilderAppends the string representation of a ushort to the end of the current
instance. |
| Append(uint) : StringBuilderAppends the string representation of a uint to the end of the current
instance. |
| Append(ulong) : StringBuilderAppends the string representation of a ulong to the end of the current
instance. |
| Append(char, int) : StringBuilder Appends multiple copies of a character to the end of the
current System.Text.StringBuilder
.
|
| Append(char[], int, int) : StringBuilderAppends the string representation of an array of Unicode characters to the
end of the current instance. |
| Append(string, int, int) : StringBuilderAppends a copy of an array of Unicode characters, specified by a starting
index and length, of a specified string to the end of the current instance. |
| AppendFormat(string, object) : StringBuilderAppends the specified string to the current instance, with the format
specifications in that string being replaced with the appropriately formatted
string value of the specified object. |
| AppendFormat(string, params object[]) : StringBuilderAppends the specified string to the current instance, with the
format specifications in that string being replaced with the appropriately formatted string values of
the elements in the specified array. |
| AppendFormat(IFormatProvider, string, params object[]) : StringBuilderAppends the specified string to the current instance, with the format specifications in that string being replaced
with the string values of the specified array of objects, formatted in
accordance with the formatting object returned by the specified IFormatProvider. |
| AppendFormat(string, object, object) : StringBuilderAppends the specified string to the current instance, with the format
specifications in that string being replaced with the appropriately formatted
string values of the specified objects. |
| AppendFormat(string, object, object, object) : StringBuilderAppends the specified string to the current instance, with
the format specifications in that string being replaced with the appropriately formatted
string values of the specified objects. |
| AppendLine() : StringBuilderDocumentation for this section has not yet been entered. |
| AppendLine(string) : StringBuilderDocumentation for this section has not yet been entered. |
| CopyTo(int, char[], int, int)Documentation for this section has not yet been entered. |
| EnsureCapacity(int) : intEnsures that the capacity of the current instance is at least a specified
value. |
| Equals(StringBuilder) : boolDetermines whether the current instance and a specified System.Text.StringBuilder have
the same value. |
| Insert(int, bool) : StringBuilderInserts the string representation of a bool value into the current
instance at a specified index. |
| Insert(int, byte) : StringBuilderInserts the string representation of a byte into the current instance at the
specified index. |
| Insert(int, char) : StringBuilderInserts the string representation of a Unicode character into the current
instance at a specified index. |
| Insert(int, char[]) : StringBuilderInserts the string representation of an array of Unicode characters into the
current instance at a specified index. |
| Insert(int, decimal) : StringBuilderInserts the string representation of a decimal into the current instance at the
specified index. |
| Insert(int, double) : StringBuilderInserts the string representation of a double into the current instance at the
specified index. |
| Insert(int, short) : StringBuilderInserts the string representation of a short into the current instance at a
specified index. |
| Insert(int, int) : StringBuilderInserts the string representation of a int into the current instance at the
specified index. |
| Insert(int, long) : StringBuilder Inserts the string representation of a long into the current instance at the
specified index.
|
| Insert(int, object) : StringBuilderInserts the string representation of an object into the current instance at a
specified index. |
| Insert(int, sbyte) : StringBuilderInserts the string representation of a sbyte into the current instance at the
specified index. |
| Insert(int, float) : StringBuilderInserts the string representation of a float into the current instance at the
specified index. |
| Insert(int, string) : StringBuilderInserts the string representation of a string object into the current instance at a
specified index. |
| Insert(int, ushort) : StringBuilderInserts the string representation of a ushort into the current instance at the
specified index. |
| Insert(int, uint) : StringBuilderInserts the string representation of a uint into the current instance at the
specified index. |
| Insert(int, ulong) : StringBuilderInserts the string representation of a ulong into the current instance at a
specified index. |
| Insert(int, string, int) : StringBuilder Inserts multiple copies of a
string into the current instance at a specified index.
|
| Insert(int, char[], int, int) : StringBuilder Inserts the string representation of a subarray
of Unicode characters into the current instance at a specified index.
|
| Remove(int, int) : StringBuilderRemoves a specified range of characters from the current instance. |
| Replace(char, char) : StringBuilderReplaces all instances of a specified character in the current instance with
another specified character. |
| Replace(string, string) : StringBuilder
Replaces all instances of a specified string with
another specified string. |
| Replace(char, char, int, int) : StringBuilderReplaces all instances of a specified character in a specified range with
another specified character. |
| Replace(string, string, int, int) : StringBuilderReplaces all instances of a specified string in a
specified range with another specified string. |
override | ToString() : stringReturns a string representation of the value of the current
instance. |
| ToString(int, int) : stringReturns a string representation of a substring of the current
instance. |