极轻量级Ioc容器,扩展也不少。
简单例子:
container.Register<IFoo, Foo>(); var instance = container.GetInstance<IFoo>(); Assert.IsInstanceOfType(instance, typeof(Foo));