示例#1
0
 public void Blah()
 {
     //I'm using bar, but I can swap it out easily without this line of code caring
     _bar.DoSomething();
 }
示例#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");
 }
示例#3
0
 public void Blah()
 {
     _bar.DoSomething();
 }