This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Diagnostics; | |
Console.WriteLine("Stopwatch starting "); | |
var stopwatch = new Stopwatch(); | |
stopwatch.Start(); | |
// Wait 10 seconds | |
Thread.Sleep(10000); | |
stopwatch.Stop(); | |
TimeSpan elapsedTime = stopwatch.Elapsed; | |
Console.WriteLine("Stopwatch elapsedTime " + elapsedTime.ToString(@"m\:ss\.fff")); | |
Console.ReadLine(); | |
Output :
Stopwatch starting
Stopwatch elapsedTime 0:10.030
Yorumlar
Yorum Gönder