there are classes
public class B{ } public class A{ public List<B> ListB = new List<B>(); } there is a list of classes List<A> ListA = new List<A>();
how to use Linq methods to combine all ListB from ListA into one array or sheet, or any other IEnumerable<B> collection