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
Finally, JetBrains team implemented this feature. U can check release 2024.1 EAP 3 update https://blog.jetbrains.com/dotnet/2024/02/02/rider-2024-1-eap-3/#debugger
© 2022 - 2024 — McMap. All rights reserved.