Is there a good way to see if two documents are the same using the word interop?
I tried using something like:
Word.Document tempDoc = app.CompareDocuments(document1, document2);
My problem is that tempDoc is not null if they are the same, so I'm not sure how to use this result to determine if the documents are the same.
Thanks in advance!
source share