Mono Class Library: Overview

System.Text.StringBuilder: Members

The members of System.Text.StringBuilder are listed below.

See Also: Inherited members from System.Object

Public Constructors

Constructs and initializes a new, empty instance of the System.Text.StringBuilder class.
Constructs and initializes a new, empty instance of the System.Text.StringBuilder class, with a specified StringBuilder.Capacity .
Constructs and initializes a new instance of the System.Text.StringBuilder class, with the specified string as its value.
Documentation for this section has not yet been entered.
Documentation for this section has not yet been entered.
Documentation for this section has not yet been entered.

Public Properties

Capacityint. Gets or sets the maximum number of characters that can be contained in the memory allocated by the current instance.
default property
Chars(int)char. Gets or sets the character at a specified position in the current instance.
Lengthint. Gets or sets the length of the current instance.
[read-only]
MaxCapacityint. Documentation for this section has not yet been entered.

Public Methods

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.
override
ToString() : 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.

Explicitly Implemented Interface Members

System.Runtime.Serialization.ISerializable.GetObjectDataDocumentation for this section has not yet been entered.