Mono Class Library: OverviewSystem.Text.StringBuilder: Method Members |
The methods of System.Text.StringBuilder are listed below. For a list of all members, see the StringBuilder Members list.
See Also: Inherited members from System.Object
Append(bool) : StringBuilder Appends the string representation of a bool to the end of the current instance.Append(byte) : StringBuilder Appends the string representation of a byte to the end of the current instance.Append(char) : StringBuilder Appends 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) : StringBuilder Appends the string representation of a decimal to the end of the current instance.Append(double) : StringBuilder Appends the string representation of a double to the end of the current instance.Append(short) : StringBuilder Appends the string representation of a short to the end of the current instance.Append(int) : StringBuilder Appends the string representation of a int to the end of the current instance.Append(long) : StringBuilder Appends the string representation of a long to the end of the current instance.Append(object) : StringBuilder Appends the string representation of an object to the end of the current instance.Append(sbyte) : StringBuilder Appends the string representation of a sbyte to the end of the current instance.Append(float) : StringBuilder Appends the string representation of a float to the end of the current instance.Append(string) : StringBuilder Appends a copy of a string to the end of the current instance.Append(ushort) : StringBuilder Appends the string representation of a ushort to the end of the current instance.Append(uint) : StringBuilder Appends the string representation of a uint to the end of the current instance.Append(ulong) : StringBuilder Appends 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) : StringBuilder Appends the string representation of an array of Unicode characters to the end of the current instance.Append(string, int, int) : StringBuilder Appends 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) : StringBuilder Appends 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[]) : StringBuilder Appends 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[]) : StringBuilder Appends 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) : StringBuilder Appends 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) : StringBuilder Appends 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() : StringBuilder Documentation for this section has not yet been entered.AppendLine(string) : StringBuilder Documentation for this section has not yet been entered.CopyTo(int, char[], int, int) Documentation for this section has not yet been entered.EnsureCapacity(int) : int Ensures that the capacity of the current instance is at least a specified value.Equals(StringBuilder) : bool Determines whether the current instance and a specified System.Text.StringBuilder have the same value.Insert(int, bool) : StringBuilder Inserts the string representation of a bool value into the current instance at a specified index.Insert(int, byte) : StringBuilder Inserts the string representation of a byte into the current instance at the specified index.Insert(int, char) : StringBuilder Inserts the string representation of a Unicode character into the current instance at a specified index.Insert(int, char[]) : StringBuilder Inserts the string representation of an array of Unicode characters into the current instance at a specified index.Insert(int, decimal) : StringBuilder Inserts the string representation of a decimal into the current instance at the specified index.Insert(int, double) : StringBuilder Inserts the string representation of a double into the current instance at the specified index.Insert(int, short) : StringBuilder Inserts the string representation of a short into the current instance at a specified index.Insert(int, int) : StringBuilder Inserts 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) : StringBuilder Inserts the string representation of an object into the current instance at a specified index.Insert(int, sbyte) : StringBuilder Inserts the string representation of a sbyte into the current instance at the specified index.Insert(int, float) : StringBuilder Inserts the string representation of a float into the current instance at the specified index.Insert(int, string) : StringBuilder Inserts the string representation of a string object into the current instance at a specified index.Insert(int, ushort) : StringBuilder Inserts the string representation of a ushort into the current instance at the specified index.Insert(int, uint) : StringBuilder Inserts the string representation of a uint into the current instance at the specified index.Insert(int, ulong) : StringBuilder Inserts 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) : StringBuilder Removes a specified range of characters from the current instance.Replace(char, char) : StringBuilder Replaces 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) : StringBuilder Replaces all instances of a specified character in a specified range with another specified character.Replace(string, string, int, int) : StringBuilder Replaces all instances of a specified string in a specified range with another specified string. overrideToString() : string Returns a string representation of the value of the current instance.ToString(int, int) : string Returns a string representation of a substring of the current instance.