using System.Collections.Generic;
public static void Main()
new Person() {Name = "Vasya", Surname = "Pupkin" },
new Person() {Name = "Kostya", Surname = "Vasichkin" },
new Person() {Name = "Simon", Surname = "Pupkin" }
new Dish() {Name = "Gaspacho" },
new Dish() {Name = "Burger" },
new Dish() {Name = "Napoleon" }
var wellProvidedPeople = GiveDishesBadWay(people, dishes);
foreach (var personWithDish in wellProvidedPeople)
Console.WriteLine("{0}:{1}", personWithDish.PersonName, personWithDish.DishName);
wellProvidedPeople = GiveDishesBetterWay(people, dishes);
foreach (var personWithDish in wellProvidedPeople)
Console.WriteLine("{0}:{1}", personWithDish.PersonName, personWithDish.DishName);
wellProvidedPeople = GiveDishesBestWay(people, dishes);
foreach (var personWithDish in wellProvidedPeople)
Console.WriteLine("{0}:{1}", personWithDish.PersonName, personWithDish.DishName);
public static IEnumerable<PersonWithDish> GiveDishesBadWay(IEnumerable<Person> people, IEnumerable<Dish> dishes)
for (int i = 0; i < people.Count(); i++)
yield return new PersonWithDish()
PersonName = people.ElementAt(i).Name,
DishName = dishes.ElementAt(i).Name
public static IEnumerable<PersonWithDish> GiveDishesBetterWay(IReadOnlyList<Person> people, IReadOnlyList<Dish> dishes)
for (int i = 0; i < people.Count; i++)
yield return new PersonWithDish()
PersonName = people[i].Name,
DishName = dishes[i].Name
public static IEnumerable<PersonWithDish> GiveDishesBestWay(IEnumerable<Person> people, IEnumerable<Dish> dishes)
return people.Zip(dishes, (p, d) => new PersonWithDish
public class PersonWithDish
public string PersonName { get; set; }
public string DishName { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public string Name { get; set; }