Click here to Skip to main content
15,885,365 members
Articles / Programming Languages / C# 4.0

Measuring time performance of code blocks automatically

Rate me:
Please Sign up or sign in to vote.
4.67/5 (2 votes)
20 Feb 2012CPOL2 min read 25K   509   18  
This article shows an easy and automatic way to measure estimate elapsed time while executing code blocks
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            using (new Measure.Measurment())
            {
                System.Threading.Thread.Sleep(2000);
            }
            Console.ReadKey(true);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
Iran (Islamic Republic of) Iran (Islamic Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions