[TestFixture]public class TestStopwatch{[Test]public void test(){//using System.Diagnostics;Stopwatch stopwatch = new Stopwatch();stopwatch.Start();//long running taskint sleeptime = new Random().Next(1, 3)*1000;Console.WriteLine("Running for ~{0}ms:",sleeptime);Thread.Sleep(sleeptime);stopwatch.Stop();Console.WriteLine(stopwatch.Elapsed.ToString());Console.WriteLine(new DateTime(stopwatch.Elapsed.Ticks).ToString("ss:fff"));}}
Friday, 22 July 2011
C# Stopwatch to measure time
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment