Let\'s imagine we have simple measurements using Stopwatch
Stopwatch
public void DoWork() { var timer = Stopwatch.StartNew(); // some hard work Lo
No, you don't need to stop it. Stop() just stops tracking elapsed time. It does not free up any resources.