SyntaxFix
Write A Post
Hire A Developer
Questions
Aggregate can also be used for same.
Aggregate
string[] test = new string[2]; test[0] = "Hello "; test[1] = "World!"; string joinedString = test.Aggregate((prev, current) => prev + " " + current);