Let's say I am using the debugger in Visual Studio on the following code:
if (method1() == method2())
{
// do something
}
Is there a way to see the results of method1()
and method2()
without manually stepping into each one and going through the whole method?