Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I need this code in C#. I found similar code in another website, but that code divide address, address book and main into the different
I need this code in C#. I found similar code in another website, but that code divide address, address book and main into the different page that under same program. Can this work made by one page?
5. AddressBook Write an Address Book class that manages a collection of Person objects. An AddressBook will allow a person to add, delete, or search for a Person object in the address book. The add method should add a person object to the address book. Make sure that the add method does not add duplicate person objects to the address book. The delete method should remove the specified person object from the address book. The search method that searches the address book for a specified person and returns the list of persons matching the specified criteria. The search can be done either by first name, last name, or person id. Write an AddressBookTester class to test your class. 5. AddressBook Write an Address Book class that manages a collection of Person objects. An AddressBook will allow a person to add, delete, or search for a Person object in the address book. The add method should add a person object to the address book. Make sure that the add method does not add duplicate person objects to the address book. The delete method should remove the specified person object from the address book. The search method that searches the address book for a specified person and returns the list of persons matching the specified criteria. The search can be done either by first name, last name, or person id. Write an AddressBookTester class to test your classStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started