1.

Choose the effective stringBuilder method which helps in producing output for the given 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» D. Join()


Discussion

No Comment Found