I tried the following code in a method:
Trace.Write("START "+Datetime.now);
//DATABASE METHOD CALL 
SaveData();
Trace.Write("END "+Datetime.now);
And I calculate the time in output window manually.
How do I use stopwatch (start/reset/stop) to get the correct execution time?
 
     
     
     
    