I want to get a list of days List<string>
from a given year in the following format: dd.MM.yyyy
public List<string> GetDays(int year)
{
List<string> lst = new List<string>();
foreach-day-in-year // TO DO iterate days from given year
{
string day="";
// TO DO iterate all days
lst.Add(day);
}
return lst;
}