Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static void Main(string[] args)
// Task 4:
// We want our application to load data and to save data. The process for reminders has already been created. You will need to do the same thing
// for the other data types.
var reminderRepository = new ReminderRepisitory();
var reminderRepository = new ReminderRepository();
if (File.Exists("Reminders.json")) //Note: these files are created in the same folder as your .exe
//Note: What happens when this file is improperly formatte? Can you handle this case?
reminderRepository.LoadFromJson(File.ReadAllText("Reminders.json"));
Expand Down