Creating Delta Diff Patches of large Binary Files in C#

前端 未结 3 1815
独厮守ぢ
独厮守ぢ 2021-02-06 11:34

I looking for a way to create Delta Diff Patches of Large Binary Files (VMWare Virtual Disk Files). Is there an implementation in C# or any useful methods in the the .NET Framew

3条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-06 12:07

    Here's a C# class that implements Meyers O(ND) Difference Algorithm:

    http://www.mathertel.de/Diff/default.aspx

    Enjoy!

提交回复
热议问题