0 votes
in C Sharp by

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

1 Answer

0 votes
by
“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
0 votes
asked Jun 16, 2020 in C Sharp by Hodge
...