LINQ , , . , , , , , , , LINQ.
var persons = new [] {"John's", "Mike's", "Albert's"};
var objects = new [] {"car", "house", "bicycle"};
var colors = new [] {"red", "blue", "green", "yellow"};
var firstPair = persons.SelectMany(_ => objects, (p, o) => new {
Person = p,
Object = o
});
var secondPair = firstPair.SelectMany(_ => colors, (fp, c) => new {
Person = fp.Person,
Object = fp.Object,
Color = c
});
LINQ Pad, .