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)
D. str1 += str2
Answer: Option C
Related Questions on Introduction to C Sharp
A. str1 + str2
B. str1.concat(str2)
C. str1.Append(str2)
D. str1 += str2
Answer: Option C
Join The Discussion