//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 is derived from the given base type.
///
///
///
///
public static bool IsDerivedFrom(this Type type, Type baseType)
{
return baseType.IsAssignableFrom(type);
}
}
}