Find diff in properties set during debugging

I'm just wondering if there is such a tool that existed, or something in Visual Studio 2010 that I just hadn't come across before. I have a situation, and I'm sure that many other people have encountered before. I debug the method once and it works, another time and it fails. I know (at the front end) what needs to happen for it to fail, and what needs to happen for it, but I cannot find anything in the background to show me the differences in all the properties that pass through this method for each use case.

Is there a tool that can somehow analyze the objects in the code that I go through this method, through each run, and then show me different properties? Which ones are installed / not installed, which ones, etc.?

I usually do not mind just blowing up the clock on each monitor and floating through them, but we have many properties on these specific objects.

Thanks guys.

+3
source share
2 answers

Will something like Mole 2010 work? I know that you can basically make diff for objects to compare their properties, but I'm not sure if this will work in your situation with method parameters.

+1
source

, Pex ? .

+1

Source: https://habr.com/ru/post/1793067/


All Articles