vote up 0 vote down star

I have a large complicated function that was ported from C++ to C#. I would like to perform a diff to see exactly what has changed between the two. Other can manually copying each of the functions to 2 temporary files oldFunction.cpp and newFunction.cs and diff-ing those is there another way?

flag
Sounds simple enough as it is if you ask me. – mbarkhau Nov 5 at 18:05
Yea, I know. I'm just really lazy. Maybe I can rig up a script to parse out the function based on function signature from each file, output to /tmp/old.cpp and /tmp/new.cs then diff them. I have a feeling I may be porting more code from MFC C++ to C# in a few weeks. Not that it should be difficult in terms of syntax but if something gets screwed up I need to check to make sure the logic didn't get changed. Thanks – sk8er3810 Nov 6 at 17:34

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.