First of all, this is not really a programming question. It's more a question of "how do I satisfy McConnels naming conventions?"
I have this Delphi-application that manipulates word-documents. One of the things I need to do is run through all the bookmarks in the document and delete some of them based upon a simple rule: If I currently work on a quote I will delete all bookmarks where the name begins with "cw_orderspecific". If I work on an order confirmation I will remove all bookmarks with names beginning with "cw_quotespecific".
The method is in place, and everything works perfectly, but I have a tiny problem. What should I call my method? The current name ("DeleteBookmarksNotAllowedForCurrentDocumentType") is too long.
Any suggestions?