Hi,
When I load Ics file, save it, and open the "source behind" I see:
PRODID:-//Aspose Ltd//iCalender Builder (v3.0)//EN
But in the original file (attached) the "PRODID" header's value is:
"-//Microsoft Corporation//Outlook 15.0 MIMEDIR//EN"
why the original value is not be saved?
(I have license key)
if you want, the code is:
using (FileStream fIn = File.OpenRead("original.ics"))
{
Appointment appointment = Appointment.Load(fIn);
using (MemoryStream ms = new MemoryStream())
{
appointment.Save("after.ics");
}
}
Please your help,
Thanks a lot,
Roi