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 Feb 12, 2020 in JAVA by rahuljain1
0 votes
asked Sep 3, 2019 in JAVA by Robin
...