Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Created September 19, 2019 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/79581e353096926250aced7110bc8aae to your computer and use it in GitHub Desktop.
Save GroupDocsGists/79581e353096926250aced7110bc8aae to your computer and use it in GitHub Desktop.
using (Comparer comparer = new Comparer(“source.docx”))
{
comparer.Add(“target.docx”);
CompareOptions compareOptions = new CompareOptions()
{
DetectStyleChanges = true
};
comparer.Compare(“result.docx”, compareOptions);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment