in C Sharp by (14.6k points)

Which string method is used for concatenation of two strings in c#?

1 Answer

0 votes
by (23.9k points)
“Concat” method of String class is used to concatenate two strings. For example,

string.Concat(firstStr, secStr)

Related questions

0 votes
asked Oct 18, 2019 in C Sharp by Robin (14.6k points)
+1 vote
0 votes
0 votes
asked Jun 16, 2020 in C Sharp by Hodge (2.6k points)
0 votes
asked Oct 18, 2019 in C Sharp by Robin (14.6k points)
...