D-Day Calendar has wrong dates when importing from google calendar?
- by chobo2
Hi
I am using D-Day calendar and I am not sure but I got a weird problem.
I basically have this for my code
iCalendar iCal = iCalendar.LoadFromStream(file.InputStream);
foreach (Event evt in iCal.Events)
{
DateTime start = evt.DTStart.Date;
DateTime end = evt.DTEnd.Date;
…