U
uiranejeb
I am afraid that you don't any solution than using the old com library:
using Microsoft.Office;
using Microsoft.Office.Core;
....
Outlook.Application app = new Outlook.Application();
Outlook.NameSpace ns = app.GetNamespace("MAPI");
Outlook.MAPIFolder folder =
ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts);
//do what you want with folder.Items
hope it helps,
uiranajeb (MCSD)
using Microsoft.Office;
using Microsoft.Office.Core;
....
Outlook.Application app = new Outlook.Application();
Outlook.NameSpace ns = app.GetNamespace("MAPI");
Outlook.MAPIFolder folder =
ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts);
//do what you want with folder.Items
hope it helps,
uiranajeb (MCSD)