MethodTwo() public method

public MethodTwo ( ) : void
return void
 public void MethodA()
 {
     Console.WriteLine("\nMethodA() ---- ");
     subSystemOne.MethodOne();
     subSystemTwo.MethodTwo();
     subSystemFour.MethodFour();
 }
 public void MethodA()
 {
     Console.WriteLine("\nMethodA() ---- ");
     _one.MethodOne();
     _two.MethodTwo();
     _four.MethodFour();
 }
Exemplo n.º 3
0
 public void MethodA()
 {
     Console.WriteLine("\n方法组A() ---- ");
     one.MethodOne();
     two.MethodTwo();
     four.MethodFour();
 }
Exemplo n.º 4
0
 public void MethodA()
 {
     Console.WriteLine("\n方法组A() ---- ");
     one.MethodOne();
     two.MethodTwo();
     three.MethodThree();
 }
Exemplo n.º 5
0
 public void MethodA()
 {
     sso.MethodOne();
     sst.MethodTwo();
     ssth.MethodThree();
     ssf.MethodFour();
     Console.WriteLine("");
 }
Exemplo n.º 6
0
 void MethodA()
 {
     one.MethodOne();
     two.MethodTwo();
     three.MethodThree();
 }
Exemplo n.º 7
0
 public void MethodB()
 {
     Console.WriteLine("\nMethodB() ---- ");
     _two.MethodTwo();
 }