24

In Visual Studio, you get this when you step over a line while debugging:

enter image description here

I can't seem to find an equivalent in Rider. Is there something like it?

Andrio
  • 1,852
  • 2
  • 25
  • 54

1 Answers1

2

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 
Andrio
  • 1,852
  • 2
  • 25
  • 54