Found 15 packages
https://github.com/google/diff-match-patch for NuGet.
Diff.Match.Patch is a port of google-diff-match-patch.
Evolution of the C# port of the google diff-match-patch implementation. - https://github.com/google/diff-match-patch
The Diff Match and Patch libraries offer robust algorithms to perform the operations required for synchronizing plain text. Diff: Compare two blocks of plain text and efficiently return a list of differences. Diff Demo Match: Given a search string, find its best fuzzy match in a block of plain text. Weighted for both accuracy and location. Match Demo Patch: Apply a list of patches onto plain text. Use best-effort to apply patch even when the underlying text doesn't match. Patch Demo Algorithms This library implements Myer's diff algorithm which is generally considered to be the best general-purpose diff. A layer of pre-diff speedups and post-diff cleanups surround the diff algorithm, improving both performance and output quality. This library also implements a Bitap matching algorithm at the heart of a flexible matching and patching strategy.
https://github.com/google/diff-match-patch/blob/master/README.md
Provides a simple object model to cope with diffs and patches. The main classes involved are Diff and Patch. Next to those, the static DiffList and PatchList classes provide some static and extension methods on List<Diff> and List<Patch>, respectively.
Side by side (before and after) HTML diff library using Google DiffMatchPatch C# port with XML and plain text support
Diff Match Patch (diff-match-patch) binding library for Bridge.NET projects.
The Diff Match and Ptch offers robust algorithms to perform the operations required for synchcronizing plain text.
A .NET Core implementation of Google's DiffMatchPatch Java library.
Package Description
Packaged code from https://github.com/google/diff-match-patch
Robust, easy-to-use diff and patch library for comparing and synchronising text with zero dependencies. Provides useful extension methods to generate diff and patch operations for strings, generating HTML for visualising diffs, and applying patch operations to text. Based on Google's diff-match-patch library. Copyright (c) Cloudey IT Ltd For diff-match-patch library: Copyright (c) 2018 The diff-match-patch Authors (https://github.com/google/diff-match-patch) Licensed under Apache 2.0, with modifications from package authors