Answered step by step
Verified Expert Solution
Question
1 Approved Answer
please anyone can do this assignment Assignment Description The key part of this assignment is reading a csv string from a file, extracting the values
please anyone can do this assignment
Assignment Description The key part of this assignment is reading a csv string from a file, extracting the values from the string, and saving those values into fields in a class. You'll also add properties to the class so that consumers of the class can get those values. In this assignment, you'll implement a PersonalData console app class that does that. Why do we care? Because we regularly use files to store game tuning information, then process that information when we run our games. You'll use (or have used) these same ideas as you complete the optional Wacky Breakout Increment 1 Unity project. Important: You MUST only add code as indicated by the comments in that file. If you don't, you're virtually guaranteed to fail all the test cases in the automated grader. Requirements For this assignment, you need to implement a PersonalData class as shown in the class diagram below: Personal Data Class Properties City { get; }: string Country { get; }: string FirstName { get; }: string LastName { get; } : string Middle Name { get; } : string Phone Number { get; }: string PostalCode { get; } : string State { get; } : string StreetAddress { get; } : string Methods PersonalData(string fileName)Step 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