This is useful: Google Calendar.NET API Documentation .
CalendarService myService = new CalendarService("exampleCo-exampleApp-1");
myService.setUserCredentials("jo@gmail.com", "mypassword");
EventQuery query = new EventQuery();
query.Uri = new Uri("https://www.google.com/calendar/feeds/[calendar]/private/full");
[calendar] = "jo@gmail.com" - ( Gmail), https://www.google. //[calendarID]// "
EventFeed calFeed = myService .Query(query);
foreach(var item in calFeed.Entries) {
entry.Delete();
}