简介:Autofac是一个.net下非常优秀,性能非常好的IOC容器(.net下效率最高的容器) 1.nuget 引用 2.创建两个类库项目,IService (用于编写接口),ServiceImpl(用于创建实现类) public class IService { public interface IAnimalBark { void Bark(); } public interface IAnimalSleep { void Sleep(); } public interface IUser