Originally Posted by
passel
getGoals was one of the methods called in your load even that you posted.
All i00 was saying is that with VS2015 (at least for the VB language) when you step over method calls with the debugger, it will automatically tell you how long the method took to execute.
If you were trying to find out which call in your Form's load event was slow, you could have just stepped through the code in the debugger (not stepping into the method) and saw which were slow without having to add a stopwatch and gather the statistics yourself.
Since trying to identify methods that take a lot of time is such a common need, they built it in to the IDE.