diff --git a/Home.md b/Home.md index d90d7c6..5221f74 100644 --- a/Home.md +++ b/Home.md @@ -9,7 +9,7 @@ Welcome to the Lightweight IOC Container wiki! - [[Using source code|Install-Lightweight-IOC-Container#Using-source-code]] - [[Usage|Simple-Usage-of-Lightweight-IOC-Container]] - [[Instantiate container|Simple-Usage-of-Lightweight-IOC-Container#Instantiate-Container]] - - [[Install IIocInstallers|Simple-Usage-of-Lightweight-IOC-Container#Install-IIocInstallers]] + - [[Register types with the container|Simple-Usage-of-Lightweight-IOC-Container#Register-types-with-the-container]] - [[Resolving instances|Simple-Usage-of-Lightweight-IOC-Container#Resolving-Instances]] - [[Disposing Container|Simple-Usage-of-Lightweight-IOC-Container#Disposing-Container]] - Detailed documentation diff --git a/Simple-Usage-of-Lightweight-IOC-Container.md b/Simple-Usage-of-Lightweight-IOC-Container.md index 22f1d41..85225f8 100644 --- a/Simple-Usage-of-Lightweight-IOC-Container.md +++ b/Simple-Usage-of-Lightweight-IOC-Container.md @@ -8,7 +8,7 @@ The easiest way to instantiate the `IocContainer` is to create an instance of it IocContainer container = new IocContainer(); ``` -## Install `IIocInstaller`s +## Register types with the container To be able to resolve instances from the `IocContainer`, you need to register them first. There are multiple ways to accomplish this and the best solution depends on the complexity of your project.