Exemplo n.º 1
0
        void SetAllAges()
        {
            DateTime now = DateTime.Now;

            _participants.ForEach(p => p.Value.AgeDays = (now - p.Value.DateTimeBirth).Days);
        }