using System;
public static class TypeExtensions
{
public static bool IsImplementationOf(this Type type)
{
if (!typeof(T).IsInterface)
throw new NotSupportedException("Only interfaces supported in IsImplementationOf");
return type.GetInterface(typeof(T).FullName) != null;
}
}