I have some Outlook Appointments saved to my local drive. How can I get the subject and the location where the appointment takes place in C# without creating an Outlook Application object (on my computer Outlook is not installed!) and without spending money on a professional solution?
It would be perfect if the solution made an object of type AppointmentItem for me, like this example (which is not working):
string path = "C:\\appointments\\myAppointment.msg"
Microsoft.Office.Interop.Outlook.AppointmentItem appointment = new Microsoft.Office.Interop.Outlook.AppointmentItem(path);