In Visual Studio, you get this when you step over a line while debugging:
I can't seem to find an equivalent in Rider. Is there something like it?
In Visual Studio, you get this when you step over a line while debugging:
I can't seem to find an equivalent in Rider. Is there something like it?
As per the comments to my original question, this feature still hasn't been implemented yet
As a workaround, if I really need to know the elapsed time, I've just been using a stop watch.
Example:
var sw = new Stopwatch();
sw.Start();
// Code you care about goes here
sw.Stop();
// Put breakpoint here, then use debugger to look at sw.ElapsedMilliseconds