Hi,
I am migrating Calendars to Google Apps using Google API Version 2 for .NET as below:
EventEntry entry = new EventEntry();
entry.Title.Text = "Test Calendar";
When eventTime = new When(StartDate, EndDate, false);
I am setting : : StartDate = {6/18/2010 3:00:00 PM} EndDate = {6/18/2010 4:00:00 PM}
But after migration it is setting Calendar Date and Time as:
StartDate = 6/18/2010 9:30am EndDate = 6/18/2010 10:30am
I tried with changing my Calendar Time Zone value to "(GMT + 00:00) GMT (no daylight saving)" also.But issue remain same.
How to resolve this issue?
Thanx