using System.Collections.Generic;
public static void Main()
var currentDay = new DateTime(2020,07,12);
var deltaDays = (DayOfWeek.Saturday - currentDay.DayOfWeek) % 6;
currentDay = currentDay.AddDays(deltaDays);
Console.WriteLine("Hello World "+ DayOfWeek.Saturday - currentDay.DayOfWeek);