the destination element has a property that is Organizer.Address
therefore, if you have assigned a destination variable called a destination, the following code gets the address of the organizer
Var address = appointment.Organizer.Address;
Try using this code.
var appointments = _service.FindAppointments(WellKnownFolderName.Calendar, new CalendarView(start,end)); foreach (var appointment in appointments) {System.Diagnose.Writeline(appointment.Organizer.Address)}
source share