Giriş
Bu sınıfı kullanarak milisaniye çözünürlüğünde ölçüm yapabiliriz. Sınıfın tasarımı şu açıklamaya benziyor.
Şöyle yaparız
Şöyle yaparız
Şöyle yaparız
Şöyle yaparız
Bu sınıfı kullanarak milisaniye çözünürlüğünde ölçüm yapabiliriz. Sınıfın tasarımı şu açıklamaya benziyor.
ConstructorDesign a class called Stopwatch. The job of this class is to simulate a stopwatch. It should provide two methods: Start and Stop. We call the start method first, and the stop method next. Then we ask the stopwatch about the duration between start and stop. Duration should be a value in TimeSpan. Display the duration on the console. We should also be able to use a stopwatch multiple times. So we may start and stop it and then start and stop it again. Make sure the duration value each time is calculated properly. We should not be able to start a stopwatch twice in a row (because that may overwrite the initial start time). So the class should throw an InvalidOperationException if its started twice.
Şöyle yaparız
var stopwatch = new Stopwatch();
ElapsedMilliseconds AlanıŞöyle yaparız
long ms = stopwatch.ElapsedMilliseconds ;
Start metodu
Şöyle yaparızstopwatch.Start();
StartNew metoduŞöyle yaparız
var stopWatch = Stopwatch.StartNew();
Stop metoduŞöyle yaparız
stopwatch.Stop();
Hiç yorum yok:
Yorum Gönder