Example #1
0
 public void AddNewTask(string newTask)
 {
     _toDoList.Items.Add(new ToDoItem(newTask));
     _toDoList.Save();
 }