I'm stock in a strange behavior of .NET C# Google Calendar API : The problem is :
Once an event is created with empty title, it can simply use the following code to update the existing event. eventEntry.Title.Text = "any title"; eventEntry.Update(); but when I try to update it again with empty string, after successfully updated, the API returns the original title to me, like the following code eventEntry.Title.Text = ""; EventEntry updatedEventEntry = eventEntry.Update(); Console.WriteLine(updatedEventEntry.Title.Text); the output is : any title it is expected to be an empty string. does anyone have any idea about the condition ? thanks -- You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://code.google.com/apis/calendar/community/forum.html
