Пример #1
0
        public IList <string> GetAllNames()
        {
            var people = new ABAddressBook().GetPeople();

            return(people.Select(p => p.FirstName).ToList());
        }