Not able to delete particular bookmark,but able to update title for the same object with the following code
Document pdfDocument = new Document(“D://1.pdf”);
OutlineItemCollection CurrentItem = pdfDocument.Outlines [1];
CurrentItem.Delete();
CurrentItem.Title = “Test”;
pdfDocument.Save(path);