Exemple #1
0
 public void MethodA()
 {
     Console.WriteLine("\nMethodA() ---- ");
     _one.MethodOne();
     _two.MethodTwo();
     _four.MethodFour();
 }
Exemple #2
0
 public void MethodA()
 {
     Debug.Log("\nMethodA() ---- ");
     _one.MethodOne();
     _two.MethodTwo();
     _four.MethodFour();
 }
 // exposing several components through single interface
 public void MethodA()
 {
     WriteLine("MethodA() -> ");
     _one.MethodOne();
     _two.MethodTwo();
     _four.MethodFour();
     WriteLine("");
 }
 public void MethodA()
 {
     _one.MethodOne();
     _two.MethodTwo();
     _four.MethodFour();
 }
Exemple #5
0
 public void MethodB()
 {
     System.Console.WriteLine("MethodB:");
     _ssTwo.MethodTwo();
     _ssFour.MethodFour();
 }
Exemple #6
0
 public void MethodA()
 {
     _subSystemOne.MethodOne();
     _subSystemTwo.MethodTwo();
 }
 public void MethodB()
 {
     System.Console.WriteLine("方法B的调用--");
     systemTwo.MethodTwo();
     systemFour.MethodFour();
 }