Vidyalelo
C# Programming · Q82

Arrays and Strings in C Sharp

Programming · C# Programming · question 82

Q82

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()
Answer
D.
Join()

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board