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
Review the documentation for TimeSpan, the struct returned by stopwatch.Elapsed. You want either the Minutes or TotalMinutes property.
stopwatch.Elapsed
Minutes
TotalMinutes
If you're measuring a 62 minute span, ts.Minutes will return 2, and ts.TotalMinutes will return 62.
ts.Minutes
2
ts.TotalMinutes
62