I need to show also the minutes, actually I use this code for show the seconds, but also need the minutes
TimeSpan ts = stopwatch.Elapsed; Console.WriteLine(\"F
//try it
Stopwatch sw = new Stopwatch(); sw.Start(); Thread.Sleep(10382); sw.Stop(); Console.Write(sw.Elapsed.Duration());