•Using the attached file write a program that does thefollowing.oReads the file line by line splitting the line on the “,” commainto first and last name.oCreate a class named Person that contains the followingproperties▪Firstname▪LastnameoCreate a list of class Person named PeopleoRead the file line by line splitting the line on the “,” comma andassigning the first and last name to the properties in a new objectof type Person and add the object to the list People.oClose the file.oMark the class as Serializable.oSerialize the list of people to a new file named“peopleSerial.txt”oDeserialIze “peopleSerial.txt” and write each item to the consoleas “firstname – lastname
Expert Answer
Answer to • Using the attached file write a program that does the following.o Reads the file line by line splitting the line on …