Reading a text file and inserting information into a new object
So I have a text file with information in the following format, with the name, email, and phone number. Bill Molan, Bill.Molan@gmail.com, 612-789-7538 Greg Hanson, Greg.Hanson@gmail.com, 651-368-4558 Zoe Hall, Zoe.Hall@gmail.com, 952-778-4322 Henry Sinn, Henry.Sinn@gmail.com, 651-788-9634 Brittany Hudson, Brittany.Hudson@gmail.com, 612-756-4486 When my program starts, I want to read this file and make each row into a new Person(), which I will eventually add to a list. I am wanting to read each line, and then use the comma to separate each string to put into the constructor of Person(), which