Skip to content

Instantly share code, notes, and snippets.

@pedropombeiro
Created November 30, 2012 23:11
Show Gist options
  • Save pedropombeiro/4179368 to your computer and use it in GitHub Desktop.
Save pedropombeiro/4179368 to your computer and use it in GitHub Desktop.
Unity.TypedFactories usage
public void Main()
{
var unityContainer = new UnityContainer();
unityContainer
.RegisterTypedFactory<IFooFactory>()
.ForConcreteType<Foo>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment