Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 620 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 620 Bytes

XmlDifference

.NET

img

A simple fsharp xml diff that you can call from C#

//workaround for F# limitation in extension methods..
using static XmlDifference.DiffExtensions.DifferenceExtension;

var diffs = "A.xml".Difference("B.xml");
foreach (var d in diffs)
    Console.WriteLine(d);

contributions welcome