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
TimeTakenOutput.Text = "0" + myStopWatch.Elapsed.Minutes.ToString() + ":" + myStopWatch.Elapsed.Seconds.ToString() + "mins";