Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

parser for ics files in .net [closed]

I'm trying to figure out the best way take a ics file and convert it into a format I can put into a database. Can anyone recommend how to do this?

like image 786
thiswayup Avatar asked Jan 31 '09 14:01

thiswayup


2 Answers

There's an example of parsing iCalendar files. It is based on the DDay.iCal library.

like image 166
Darin Dimitrov Avatar answered Sep 22 '22 16:09

Darin Dimitrov


The commercial .NET library Aspose.iCal does the job

http://www.aspose.com/community/blogs/salman.sarfraz/archive/2008/11/21/where-is-aspose-icalendar.aspx (used to be http://www.aspose.com/categories/file-format-components/aspose.network-for-.net/default.aspx)

Or this open source parser (didn't try it)

http://sourceforge.net/projects/icalparser/

And this online iCal validator comes in handy

http://severinghaus.org/projects/icv/

Regards, tamberg

like image 32
tamberg Avatar answered Sep 18 '22 16:09

tamberg