using System.Threading.Tasks;
public static void Main()
Console.WriteLine($"{GetTime()} - Started tasks");
var clothes = WashClothes();
Console.WriteLine($"{GetTime()} - Completed tasks!");
private static string WashClothes()
Console.WriteLine($"{GetTime()} - Washing Clothes!");
Console.WriteLine($"{GetTime()} - Completed washing clothes!");
private static void DryClothes(string clothes)
Console.WriteLine($"{GetTime()} - Drying Clothes!");
Console.WriteLine($"{GetTime()} - Completed drying clothes!");
private static void CleanHouse()
Console.WriteLine($"{GetTime()} - Cleaning House!");
Console.WriteLine($"{GetTime()} - Completed cleaning house!");
private static void CookFood ()
Console.WriteLine($"{GetTime()} - started cooking!");
Console.WriteLine($"{GetTime()} - Completed cooking!");
private static string GetTime()
return DateTime.Now.ToString("HH:mm:ss");