+1 vote

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

by
edited by

1 Answer

0 votes
 
Best answer

You can parse ics string using AppointmentParser.Parse method:

string ics = ....;
Appointment appointment = new AppointmentParser().Parser(ics);
by (297k points)
...