using System.Collections.Generic;
public static void Main()
var people = new List<Person>()
FullName = "Micheal doug",
var result = people.SelectMany(x => x.Cars)
FiddleHelper.WriteTable(result);
public string FullName { get; set; }
public List<Car> Cars { get; set; }
public string Name { get; set; }