tags:

views:

9

answers:

1

I have two assemblies with the same name. Another one was created after the 15 days of other. How do i what the what are all the changes in the second assemly like method,class,namespace (i,e) everything about the changes in the format of XML file.

Is any tool is avaliable for find the changes in the assemblies ?

+1  A: 

Yes, it is called source control repository where your source code is stored. Most of them handle history and allow you to compare differences between commits. If you don't use source control (maybe it's time to start using one) you could ildasm the assemblies and use your favorite diff tool.

Darin Dimitrov