Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# - Unified diff/patch creator [closed]

Tags:

c#

diff

I have two strings in a C# WPF application and would like to generate a unified diff file (in the format of GNU diff notation, like patches used in Subversion and TortoiseSVN).

Is there a library that can do this for me instead of recreating the wheel?

I have been searching google without success. :(

like image 839
Russell Avatar asked Jan 14 '11 02:01

Russell


1 Answers

Two alternatives:

http://diffplex.codeplex.com

http://htmldiff.codeplex.com

like image 140
jgauffin Avatar answered Sep 30 '22 18:09

jgauffin