Use Stopwatch.StartNew() to create and start a new stopwatch in one line.
Stopwatch.StartNew()
var sw = new Stopwatch(); sw.Start();
var sw = Stopwatch.StartNew();