using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
List<string> ToDoList = new List<string>();
string item = string.Empty;
Console.WriteLine("Add More stuff to do!:");
item = Console.ReadLine();
foreach (string item1 in ToDoList)
Console.WriteLine(item1);