Vidyalelo
C# Programming · Q39

Introduction to C Sharp

Programming · C# Programming · question 39

Q39

Which of the following is NOT a valid method of string concatenation in C#?

A.
str1 + str2
B.
str1.concat(str2)
C.
str1.Append(str2)
Answer
D.
str1 += str2

Answer: Option C

Solution

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