Skip to content

Instantly share code, notes, and snippets.

@chrisortman
Created February 27, 2012 22:11
Show Gist options
  • Save chrisortman/1927468 to your computer and use it in GitHub Desktop.
Save chrisortman/1927468 to your computer and use it in GitHub Desktop.
IoC example
public class A {
public A() {
_b = new B();
}
}
public class B {
public B() {
_c = new C();
}
}
var a = new A(
new B(
new C()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment