SyntaxFix
Write A Post
Hire A Developer
Questions
If the strings you want to join are in List of Objects, then you can do something like this too:
var studentNames = string.Join(", ", students.Select(x => x.name));