Examveda

Choose the effective stringBuilder method which helps in producing output for the following C# code?
static void Main(string[] args)
{
    StringBuilder s = new StringBuilder("object");
    s./*______*/("Oriented Language");
    Console.WriteLine(s);
    Console.ReadLine();
}
Output : objectOriented Language

A. Insert()

B. Add()

C. Append()

D. Join()

Answer: Option C


Join The Discussion

Related Questions on Arrays and Strings in C Sharp