Exemplo n.º 1
0
 public void Blah()
 {
     //I'm using bar, but I can swap it out easily without this line of code caring
     _bar.DoSomething();
 }
Exemplo n.º 2
0
 public void Blah()
 {
     //I'm using bar, but I can swap it out easily without this line of code caring
     _bar.DoSomething();
     Console.WriteLine("THis is BetterFoo");
 }
Exemplo n.º 3
0
 public void Blah()
 {
     _bar.DoSomething();
 }