Ershov95
0 Точки
VasilValchanov
555 Точки
public Person GetOldestMember()
{
int max = 0;
foreach (var p in people)
{
if (p.Age > max)
{
max = p.Age;
}
}
return people.FirstOrDefault(p => p.Age == max);
}