MethodFour() public method

public MethodFour ( ) : void
return void
 public void MethodA()
 {
     Console.WriteLine("\n MethodA() ---- ");
     _one.MethodOne();
     _two.MethodTwo();
     _four.MethodFour();
 }
Esempio n. 2
0
 public void MethodA()
 {
     Console.WriteLine("\n方法组A() ----");
     one.MethodOne();
     two.MethodTwo();
     three.MethodThree();
     four.MethodFour();
 }
Esempio n. 3
0
 void MethodB()
 {
     two.MethodTwo();
     three.MethodThree();
     four.MethodFour();
 }