Answers for "c# reduce a collection to a string"

C#
0

c# reduce a collection to a string

string result = string.Join(";", fooList.Where(x=>x.property == "bar").Select(x=>x.title));
Posted by: Guest on February-15-2021

C# Answers by Framework

Browse Popular Code Answers by Language