Visual studio 2017 Evaluate expression (Debug mode)

Viewed 16921

I have looked everywhere and I can't seem to find a place where I can evaluate an expression while debugging.

The only thing I can find is Execute in interactive however this doesn't support the direct expression evaluation.

This annoys me since it's one of the features I use the most :)

Does anyone know where it is in Visual Studio 2017 Community edition

enter image description here

2 Answers

In the QuickWatch window (Debug -> QuickWatch or Shift + F9) you can evaluate expressions while debugging. enter image description here Is this the functionality you're looking for?

I think the thing you're looking for is the Immediate window.

Debug > Windows > Immediate
Related