Reflection C#

//Microsoft Public License (Ms-PL)
//http://visualizer.codeplex.com/license
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Redwerb.BizArk.Core.TypeExt
{
    /// 
    /// Provides extension methods for Type.
    /// 

    public static class TypeExt
    {
        /// 
        /// Determines if the type implements the given interface.
        /// 

        /// 
        /// 
        /// 
        public static bool Implements(this Type type, Type interfaceType)
        {
            foreach (Type i in type.GetInterfaces())
                if (i == interfaceType) return true;
            return false;
        }
   }
}