Beispiel #1
0
 /// <summary>
 /// Appends a line to the last to-do of the list
 /// </summary>
 /// <param name="content">Line to be added to the last to-do</param>
 public void AppendLineTodo(string content)
 {
     ThingTodo.AppendLine(content);
 }
Beispiel #2
0
 /// <summary>
 /// Adds a to-do the the <see cref="ToDoList"/>  object.
 /// </summary>
 /// <param name="done">True if the to-do has already been implemented, false otherwise</param>
 /// <param name="content">Description of what must be done.</param>
 public void AddTodo(bool done, string content)
 {
     ThingTodo.Add(done, content);
 }