show/hide this revision's text 2 edited body

I would wrote a simple CodeProfiler class some time ago that wrapped Stopwatch to easily profile a method using an Action: http://www.improve.dk/blog/2008/04/16/profiling-code-the-easy-way

It'll also easily allow you to profile the code multithreaded. The following example will profile the action lambda with 1-16 threads:

using System;

namespace CodeProfiler
{
    class Program
    {
        static void Main(string[] args)
        {
            Action action = () =>
            {
                for (int i = 0; i < 10000000; i++)
                    Math.Sqrt(i);
            };

            for(int i=1; i<=16; i++)
                Console.WriteLine(i + " thread(s):\t" + CodeProfiler.ProfileAction(action, 100, i));

            Console.Read();
        }
    }
}
show/hide this revision's text 1

I would a simple CodeProfiler class some time ago that wrapped Stopwatch to easily profile a method using an Action: http://www.improve.dk/blog/2008/04/16/profiling-code-the-easy-way

It'll also easily allow you to profile the code multithreaded. The following example will profile the action lambda with 1-16 threads:

using System;

namespace CodeProfiler
{
    class Program
    {
        static void Main(string[] args)
        {
            Action action = () =>
            {
                for (int i = 0; i < 10000000; i++)
                    Math.Sqrt(i);
            };

            for(int i=1; i<=16; i++)
                Console.WriteLine(i + " thread(s):\t" + CodeProfiler.ProfileAction(action, 100, i));

            Console.Read();
        }
    }
}