Skip to content

Instantly share code, notes, and snippets.

@kkozmic
Created September 21, 2010 23:46
Show Gist options
  • Save kkozmic/590820 to your computer and use it in GitHub Desktop.
Save kkozmic/590820 to your computer and use it in GitHub Desktop.
// in pseudo API not specific to any particular container
container.Register<FooBar>().AsService<IFoo,IBar>().Singleton;
var one = container.Resolve<IFoo>();
var two = container.Resolve<IBar>();
Assert.AreSame(one, two);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment