bool list c# code example
Example 1: c# ienumerable to list
List<object> list = enumerable.ToList();
Example 2: c# list to string
using System.Linq;
string str = list.Aggregate((x, y) => x + ',' + y);
Example 3: c# bool list count true
return list.Count(x => x)