using System.Collections.Generic;
new EngineeringTeam().WeThankYou();
public class EngineeringTeam
private List<AwesomeEngineer> _team;
_team = new List<AwesomeEngineer>();
_team.Add(new AwesomeEngineer("James Majcen", "You are so the bomb."));
_team.Add(new AwesomeEngineer("Joe Schmoe", "Your code is fire."));
foreach (var engineer in _team)
Console.WriteLine(engineer.Name + "... " + engineer.Message);
public class AwesomeEngineer
public AwesomeEngineer(string name, string message)