I have a class on my desktop pc and a different version of the same class on my laptop.
How can I easily load the classes at the same time so I can compare the differences method by method?
compare tow classes
compare tow classes
Ray Cannon
Please excuse any smelling pisstakes.
Please excuse any smelling pisstakes.
Re: compare tow classes
I suggest you ]SAVE them as text files and compare the files, e.g.
then on the laptop
then bring the 2 files together if the PCs don't see each other, say in C:\tmp, and do
you can also use 3rd party comparison software if you know a good one. I use BeyondCompare.
Code: Select all
]SAVE PCclass \tmp\PCclass
Code: Select all
]SAVE Laptopclass \temp\Laptopclass
Code: Select all
]SALT.Compare \tmp\PCclass \tmp\Laptopclass
you can also use 3rd party comparison software if you know a good one. I use BeyondCompare.
Re: compare tow classes
Nothing wrong with Dan's suggestions but there is another alternative which is to bring in one of the classes, assign its ⎕SRC to a variable, bring in the the other, assign its ⎕SRC to a variable and compare the two variables.