Firstly, set the StringBuilder −
StringBuilder str = new StringBuilder();
str.Append("premium");To access the 5th character and display it −
Console.WriteLine(str[4]);
The following is the complete code −
Example
using System;
using System.Text;
public class Demo {
public static void Main() {
StringBuilder str = new StringBuilder();
str.Append("premium");
Console.WriteLine("String : "+str);
Console.Write("Accessing 5th character : ");
Console.WriteLine(str[4]);
}
}Output
String : premium Accessing 5th character : i