vote up 2 vote down star
2

Are there any good programs out there to compare to compile .NET assemblies?

For example I have HelloWorld.dll (1.0.0.0) and HelloWorld.dll (2.0.0.0), and I want to compare differences how can I do this?

I know I can use .NET Reflector and use the Assembly Diff plugin. Are there any other good tools out there to do this?

flag

Just sheer binary differences? Or public interface differences? – BC Mar 16 at 22:48
If you can use .NET Reflector with Assembly Diff, why do you need another tool? Is the plugin insufficient for your needs? If so, how? – strager Mar 16 at 22:48
@strager: in my experience, it doesn't work – jcollum Apr 14 at 23:28
@strager: It does not let me compare two builds of the same assembly, at least when their version is the same. – Alek Davis Jul 20 at 20:15

4 Answers

vote up 5 vote down check

Ways to Compare .NET Assemblies suggests

Commercial:

Free:

link|flag
Just a note that Framework Design Studio is pretty useless. More like a book pusher that teaches the style and then eventually we all realise those guidelines are not the answer to anything. Reflector addin is about the only one that is free and good but under-developed. – rama-jka toti Mar 17 at 6:50
I've spent 20 minutes today trying to use the reflector add in and I don't think that it works. I tried comparing 2 assemblies that were named the same thing in 2 different directories. – jcollum Apr 14 at 23:27
vote up 0 vote down

I just had to compare two revisions of the same DLL, which had the same version (I needed to implement a small hotfix, and deploy the DLL in production, but I wanted to make sure that no other changes leaked into code). Ideally, I would want the Assemby Diff add-in to show me the difference, but it does not work (it thinks that I'm comparing a DLL to itself). So this is what I did:

  • Created two folders to hold disassembled source files.
  • Used the Reflector's Export option (from context menu) to generate source files from each DLL in the folders created in previous step.
  • Used the free DiffMerge tool to compare two directories; the tools showed me the modified files and the difference.

It's a bit kludgy, but seems to work. I wish the Assembly Diff add-in worked, though.

link|flag
vote up -2 vote down

Java has a nice one: http://stackoverflow.com/questions/523307/semantic-diff-utilities/

link|flag
vote up 2 vote down

Two ways.

You could ILDASM and diff with classic tools.

Or you could use NDepends, which will cost for that feature.

[Piece to C# bloaters..]

link|flag
+1, just ildasm both files, then diff the text output; you don't need expensive toos – Paul Betts Mar 17 at 1:03

Your Answer

Get an OpenID
or

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