For .NET developers, there is an original code diff tool : NDepend
Basically NDepend can analyze a code base and create and then persist a snapshot of the code. 2 such snapshots, taken at 2 different times, can be compared. Then, NDepend lets ask for new methods/classes, removed methods/classes, methods/classes where code was changed... as easily as writing:
SELECT METHODS WHERE CodeWasChanged
Also, NDepend can plug to any text diff tool listed here. The user can then compare the 2 versions of the changed method or class. Another cool capability, is to plug NDepend to RedGate Reflector, decompile the 2 versions of the method/class and compare these 2 versions with a text diff tool. More information here: Advanced Code Diff
