csharp reduce a collection to a string

Code Example - csharp reduce a collection to a string

                
                        string result = string.Join(";", fooList.Where(x=>x.property == "bar").Select(x=>x.title));