Hi
I have a string which defines an ICS appointment. Is there a simple way to convert it to a Limilabs appointment object?
Regards
Nick
You can parse ics string using AppointmentParser.Parse method:
string ics = ....; Appointment appointment = new AppointmentParser().Parser(ics);