I would like to convert a list of dates that are represented as follows:
- June 6
- September 18
- November 2
- February 29
The dates themselves do not specify the year so when I attempt to parse them using Convert.ToDateTime()
the current year (2021
) is assumed. How can I specify these dates to be of a different year? Lets say I want to specify each of these dates are from the year 2020
. How can I specify that in the conversion? Is this where I would use CultureInfo
?