Is it possible that Visual Studio 2015 (and up) has visual feedback about which lines of code were executed or not.
Example: I press F5 to debug my application. Visual hit one of my breakpoints, at this point I want to have visual feedback from the lines executed (or not) before hitting the break point. For example, a green line means that the code being executed and the gray color are not being executed.
Quite like Cale code coverage. See below. A green code means that the chip was clean and a gray one means no.

NCover plugins seem to do this, but is there a native or free solution?
Why? : Because then I donβt need to constantly walk until I'm interested, I can just break down there and see if the PC was in the right conditions and so on (I'm not talking about testing, only the real-time debugging function)
source
share