public void MethodA() { Console.WriteLine($"{Environment.NewLine}方法组A---"); _one.MethodOne(); _two.MethodTwo(); _four.MethodFour(); }
public void MethodA() { Console.WriteLine("MethodA()"); one.MethodOne(); two.MethodTwo(); four.MethodFour(); }
public void MethodA() { Console.WriteLine("\nMethodA() ---- "); _one.MethodOne(); _two.MethodTwo(); _four.MethodFour(); }
public void MethodA() { Console.WriteLine("MethodA is start"); one.MethodOne(); two.MethodTwo(); three.MethodThree(); four.MethodFour(); }
/// <summary> /// A demo method in the facade. /// </summary> public void MethodA() { // call subsystems one and two _one.MethodOne(); _two.MethodTwo(); }
public void MethodA() { Console.WriteLine("MethodA called"); one.MethodOne(); two.MethodTwo(); }
public void MethodA() { _subSystemOne.MethodOne(); _subSystemTwo.MethodTwo(); }
public void MethodA() { Console.WriteLine("方法组A()"); one.MethodOne(); two.MethodTwo(); }