Which string method is used for concatenation of two strings in c#?
“Concat” method of String class is used to concatenate two strings
Example
string.Concat(firstnamestr, lastnamestr)
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
“Concat” method of String class is used to concatenate two strings
Example