DiffLib icon indicating copy to clipboard operation
DiffLib copied to clipboard

A simple but powerful diff and merge class library for .NET, written in C#

Results 4 DiffLib issues
Sort by recently updated
recently updated
newest added

With the release for .NET Core 2.0 and .NET Standard 2.0 I want to see if I need to add support specifically for this.

I tried to merge the following scenario: base: {} left: {a} right: {} {b} This is what I want to happen: base: {} left: {a} right: {} {b} merged: {a}...

Before [2017.7.26.1241](https://github.com/lassevk/DiffLib/releases/tag/version%2F2017.7.26.1241)), adding a reference to the .NET Standard 1.0 version of DiffLib also added a ton of references to other standard shim assemblies. Almost none of those provide code...

This samples show the basic power of this DiffLib and is provided as VB.NET: ![image](https://cloud.githubusercontent.com/assets/3033827/17019998/9439fc14-4f3f-11e6-9aa3-0839949ac00b.png) ``` vb.net Option Explicit On Option Strict On Imports DiffLib Module Module1 Sub Main() Const...