This is my code:
public Schedule(string vCalendar)
{
IICalendarCollection allEvents = iCalendar.LoadFromStream(new StringReader(vCalendar));
}
The vCalendar string object is a .ical/.ics file that I read in. Why does this throw a FileNotFoundException?
Isn't this suppose to work with a string coded in an ical/ics format.
Are you sure? Your code works for me. A calendar string is correctly loaded and I can browse the contents in debug. I fear something else is causing your file not found exception.