두 문서가 동일한지 확인
구현
알아내는 데 4-5줄 이상의 코드가 필요하지 않습니다.
using (Comparer comparer = new Comparer(@"D:/source.docx"))
{
comparer.Add(@"D:/target.docx");
comparer.Compare(@"D:/result.docx");
ChangeInfo[] changes = comparer.GetChanges();
}
스트림에서 변경 사항 목록을 비교하거나 가져올 수도 있습니다.
using (Comparer comparer = new Comparer(File.OpenRead("source.docx")))
{
comparer.Add(File.OpenRead("target.docx));
comparer.Compare("save resultant file");
ChangeInfo[] changes = comparer.GetChanges();
}
PDF, Excel, 프레젠테이션 또는 기타supported files를 비교할 수 있습니다. 이 파일DLL을 다운로드하고 .NET 프로젝트(기존 또는 신규)에 참조로 추가하기만 하면 됩니다. 무료 지원을 받으려면 문제를 게시하십시오here.
Reference
이 문제에 관하여(두 문서가 동일한지 확인), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/atir_tahir/check-if-two-documents-are-same-14le텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)