Click here to Skip to main content
15,895,782 members
Articles / Desktop Programming / Windows Forms

Aspect Oriented Programming for Benchmarking

Rate me:
Please Sign up or sign in to vote.
4.64/5 (16 votes)
1 Jul 2007CPOL9 min read 74.3K   352   57  
This article explains how you can use AOP for benchmarking purposes.
using Benchmarking;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using Spring.Aop;

namespace Benchmarking.Aspects
{
	public class BenchmarkBeforeAdvice : IMethodBeforeAdvice
	{
		public void Before(MethodInfo method, object[] args, object target)
		{
            ArgumentList argList = new ArgumentList();

            int i = 0;
            foreach (ParameterInfo pi in method.GetParameters())
            {
                argList.Add(pi.Name, args[i].ToString());
                i++;
            }
            
            BenchmarkFactory.StartTimeRow(target.GetType().Name, method.Name, argList);
		}
	}
}

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
Instructor / Trainer Alura Cursos Online
Brazil Brazil

Comments and Discussions