Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Created November 29, 2019 12:11
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/49d4bd20d6f1431d80a47f60584958de to your computer and use it in GitHub Desktop.
Save GroupDocsGists/49d4bd20d6f1431d80a47f60584958de to your computer and use it in GitHub Desktop.
string sourcePath = "source.eml";
string target1Path = "target1.eml";
string target2Path = "target2.eml";
string target3Path = "target3.eml";
string resultPath = "result.eml";
Comparer comparer = new Comparer(sourcePath);
comparer.Add(target1Path);
comparer.Add(target2Path);
comparer.Add(target3Path);
comparer.Compare(File.Create(resultPath), new SaveOptions(), new CompareOptions());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment