Main menu:
using Outlook = Microsoft.Office.Interop.Outlook;
Outlook.Application application = new Outlook.Application();
....................................................................................
Outlook.MailItem oItem = (Outlook.MailItem) application.Session.OpenSharedItem(string Path);
var oItem = application.Session.OpenSharedItem(string Path) as Outlook.MailItem;
.................................................................................
oItem.Close(OlInspectorClose.olDiscard); // now closing is possible
aapplication.Quit();
Marshal.ReleaseComObject(oItem);