我需要在 Outlook 中删除一组特定的联系人。
我找到了一些在 C# 中添加新组的命令,但现在我需要删除一个组。
我设法解决了。在下面的这个函数中,我删除了默认联系人文件夹中名为“Example”的组。
private void RemoveItemGroup()
{
Outlook._Application outlookObj = new Outlook.Application();
Outlook.MAPIFolder folder = (Outlook.MAPIFolder)
outlookObj.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts);
foreach (var curr in folder.Items.OfType<DistListItem>())
{
Console.WriteLine(curr.DLName);
if (curr.DLName == "Example")
{
curr.Delete();
}
}
}