Mono Class Library: System.Text.StringBuilder Overview | Members

System.Text.StringBuilder.Insert Method

Inserts the string representation of a float into the current instance at the specified index.

public StringBuilder Insert (int index, float value)

Parameters

index
A int containing the index at which to insert.
value
The float to be inserted.

Returns

The current instance after insertion has occurred.

Exceptions

TypeReason
ArgumentOutOfRangeException

index is greater than the length of the current instance

-or-

index is less than zero

Remarks

This method inserts value.ToString() into the current instance at the specified location. Existing characters are shifted to make room for the new text, and StringBuilder.Capacity is adjusted as necessary.

Requirements

Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0