Ejemplo n.º 1
0
 public void MethodB()
 {
     Console.WriteLine("\nMethodB() ---- ");
     _two.MethodTwo();
     _three.MethodThree();
     _four.MethodFour();
 }
Ejemplo n.º 2
0
 public void MethodB()
 {
     Console.WriteLine();
     Console.WriteLine("方法组B() ---- ");
     _two.MethodTwo();
     _three.MethodThree();
 }
Ejemplo n.º 3
0
 // exposing several components through single interface
 public void MethodB()
 {
     WriteLine("MethodB() -> ");
     _two.MethodTwo();
     _three.MethodThree();
     WriteLine("");
 }
Ejemplo n.º 4
0
 public void MethodA()
 {
     System.Console.WriteLine("方法A的调用--");
     systemOne.MethodOne();
     systemThree.MethodThree();
     systemFour.MethodFour();
 }
 public void MethodB()
 {
     _two.MethodTwo();
     _three.MethodThree();
 }
Ejemplo n.º 6
0
 public void MethodA()
 {
     System.Console.WriteLine("MethodA:");
     _ssOne.MethodOne();
     _ssThree.MethodThree();
 }
Ejemplo n.º 7
0
 public void MethodB()
 {
     _subSystemTwo.MethodTwo();
     _subSystemThree.MethodThree();
 }
Ejemplo n.º 8
0
 public void MethodB()
 {
     Debug.Log("\nMethodB() ---- ");
     _two.MethodTwo();
     _three.MethodThree();
 }