msalade / IoCContainer

Simple IOC container framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IoCContainer

Simple framework which provide container for easier use of Dependecy Injection design pattern.

Example of use:

var container = new Container();
container.Register<ISample, Sample>();

var myClass = new MyClass(container.GetInstance<ISample>());

About

Simple IOC container framework


Languages

Language:C# 100.0%