C# StringBuilder Insert(Int32, SByte)
Description
StringBuilder Insert(Int32, SByte)
Inserts the string
representation of a specified 8-bit signed integer into this instance at
the specified character position.
Syntax
StringBuilder.Insert(Int32, SByte)
has the following syntax.
[CLSCompliantAttribute(false)]/*from w ww. jav a 2s . c o m*/
public StringBuilder Insert(
int index,
sbyte value
)
Parameters
StringBuilder.Insert(Int32, SByte)
has the following parameters.
index
- The position in this instance where insertion begins.value
- The value to insert.
Returns
StringBuilder.Insert(Int32, SByte)
method returns A reference to this instance after the insert operation has completed.
Example
using System;//from ww w. j a v a 2 s. co m
using System.Text;
class Sample
{
public static void Main()
{
StringBuilder sb = new StringBuilder("from java2s.com");
sb.Insert(3, (SByte)123);
Console.WriteLine(sb.ToString());
}
}
The code above generates the following result.