@ -2,8 +2,42 @@ This is a simple usage guide of the Lightweight IOC Container.
## Instantiate container
## Instantiate container
The easiest way to instantiate the `IocContainer` is to create an instance of it at the start of your application:
```c#
IocContainer container = new IocContainer();
```
## Install `IIocInstaller`s
## Install `IIocInstaller`s
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.
In this simple usage guide we will only take a look at the most straightforward way that is to just register the interfaces and their classes with the `IocContainer`: