C# StringBuilder Insert(Int32, Single)

Description

StringBuilder Insert(Int32, Single) Inserts the string representation of a single-precision floating point number into this instance at the specified character position.

Syntax

StringBuilder.Insert(Int32, Single) has the following syntax.


public StringBuilder Insert(
  int index,
  float value
)

Parameters

StringBuilder.Insert(Int32, Single) has the following parameters.

  • index - The position in this instance where insertion begins.
  • value - The value to insert.

Returns

StringBuilder.Insert(Int32, Single) method returns A reference to this instance after the insert operation has completed.

Example


using System;//from  w  w  w  .j a va 2  s .c  o  m
using System.Text;

class Sample 
{
    public static void Main() 
    {
        StringBuilder sb = new StringBuilder("from java2s.com");
        sb.Insert(3, 1.2F);
        Console.WriteLine(sb.ToString());
    }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    System.Text »




ASCIIEncoding
Encoding
EncodingInfo
StringBuilder
UnicodeEncoding
UTF8Encoding