vote up 13 vote down star
6

Requirements:

  • free, preferably open-source
  • implemented in one of the .NET managed langs

Google found these:

EDIT:

No apps please, only libraries.

flag

33% accept rate

3 Answers

vote up 3 vote down check

I think the "Generic - Reusable Diff Algorithm in C#" on Codeproject is the best you can find as a .NET-Engine for diff/patch/merge. I made a project on my own with it and it fits my needs with most scenarios. There are one or two worst-case scencario when the algorithm made the patch-file larger than it have to be. But in most of the cases it works just fine for me (textfiles with a size of >30 MB).

I'm currently testing another Codeproject-Project you can find here: http://www.codeproject.com/KB/applications/patch.aspx It's using some DLLs from Microsoft for patching, so it looks interesting. But those DLLs are unmanaged and this project is only some sort of wrapper for it. But maybe it can help you

link|flag
thanks for info! but I hope to find more sophisticated solution. I just can't believe nobody created some neat lib – aku Sep 26 '08 at 9:35
When you find a better library, please tell us (or at least me g) - I searched myself quite a while and didn't find anything beside the already mentioned. – Anheledir Sep 28 '08 at 0:14
vote up 0 vote down

You can grab the COM component that uses Google's Diff/Patch/Match. It works from .NET.

link|flag
vote up 0 vote down

The absolute best application for diff/merge/patch is WinMerge. Obviously this is a whole application, but its OSS on sourceforge so you can grab the internal bits of code.

I'm not sure if you class C++ as a .NET language or not, but you can compile it with Visual Studio with the CLI extensions.

link|flag
You just didn't try Araxis Merge :) – aku Sep 26 '08 at 9:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.