using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
FiddleHelper.WriteTable(GetDates(2023,3));
public static List<String> GetDates(int year, int month)
return Enumerable.Range(1, DateTime.DaysInMonth(year, month))
.Select(day => new DateTime(year, month, day).ToLongDateString())