コード例 #1
0
 public int DoSomething(IBar bar)
 {
     Count = bar.DoSomethingElse(1, 2);
     return(Count);
 }
コード例 #2
0
 public void DoSomethingWithoutResult(IBar bar)
 {
     Count = bar.DoSomethingElse(1, 2);
 }
コード例 #3
0
 public void DoSomething()
 {
     _bar.DoSomethingElse();
 }