How do you create a clone of a word document in c#? (office 2007 libraries)
public copyDocument (Word.Document _originalDocument)
{
//How do I clone the _originalDocument?
Word.Document clonedDocument = _originalDocument;
//Do stuff to cloneDocument without effecting _originalDocument
}
So what I want to do is grab a clone of the original document and then make changes to it without effecting the original document. With the above, if I make changes to cloneDocument they will also be applied to _originalDocument.