Stopwatch.ElapsedTicks : Stopwatch « System.Diagnostics « C# / C Sharp by API






Stopwatch.ElapsedTicks

  

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Threading;

public class MainClass
{
    public static void Main()
    {
        Stopwatch sw = new Stopwatch();
        sw.Start();
        for (int i = 0; i < 1000; i++)
        {
        }
        sw.Stop();

        Console.WriteLine(sw.ElapsedTicks);
        sw.Reset();

        sw.Start();
        for (int i = 0; i < 1000; i++)
        {
        }
        sw.Stop();

        Console.WriteLine("TryParse pattern took {0}ms", sw.ElapsedMilliseconds);
    }
}

   
    
  








Related examples in the same category

1.Stopwatch.ElapsedMilliseconds
2.Stopwatch.Reset()
3.Stopwatch.Start()