Please consider the following:
public class MyObject
{
public bool B;
public string Txt;
}
List<MyObject> list; //list of a bunch of MyObject's
With lambda expression, how can I produce a string consisting of comma separated values of Txt of those objects, where B is true?