In Objective-C there is a method on NSArray which lets us join all elements by a string, so all the strings in the array will be joined by that string.
NSArray* arr = @[@"Hello", @"world"];
NSString* mystring = [arr componentsJoinedByString:@" "];
Any similar thing for something like a List in C#?