c# reduce a collection to a string code example
Example: c# reduce a collection to a string
string result = string.Join(";", fooList.Where(x=>x.property == "bar").Select(x=>x.title));
string result = string.Join(";", fooList.Where(x=>x.property == "bar").Select(x=>x.title));