IConversionManager
Establish a composition interface and a subsystem.
Implementors should delegate the conversion to
a instance of a type converter.
namespace Castle.MicroKernel.SubSystems.Conversion
{
public interface IConversionManager : ITypeConverter, ISubSystem
{
void Add(ITypeConverter converter);
}
}