Time issue in calendar entries in google apps
I am migrating the Calendar entries with recurrence from outlook to google apps.But the start time and the end time of the same recurrence entry in google apps is not coming correctly.The time zone of google apps account is set as (GMT+00.00)GMT开发者_StackOverflow中文版(no daylight saving). Please help.
Regards Sanchaita chakraborty
Its not clear from your question what you are asking..
But As i checked in google documentation a time format like this is used in API 2010-03-29T13:12:38.861Z
.
So u can easily convert it to C# datetime object by using DateTime.TryParse method. however it returns the date in your current culture timezone. If you want the time zone of the Actual date you can use DateTimeTime.TryParseExact and provide the CultureInfo.
精彩评论