Login
Remember
Register
Ask a Question
Which string method is used for concatenation of two strings in c#?
0
votes
asked
Oct 18, 2019
in
C Sharp
by
Robin
Which string method is used for concatenation of two strings in c#?
c#-concatenation
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 18, 2019
by
rajeshsharma
“Concat” method of String class is used to concatenate two strings. For example,
string.Concat(firstStr, secStr)
...