red30 Well-Known Member Licensed User Longtime User Apr 7, 2017 #1 I want to see the code execution time from the breakpoint to the breakpoint. Can I do it?
Erel B4X founder Staff member Licensed User Longtime User Apr 9, 2017 #2 The debugger doesn't track execution time. You should also test performance in release mode. B4X: Dim n As Long = DateTime.Now 'code here.. Log(DateTime.Now - n) 'in milliseconds Upvote 0
The debugger doesn't track execution time. You should also test performance in release mode. B4X: Dim n As Long = DateTime.Now 'code here.. Log(DateTime.Now - n) 'in milliseconds