Arithmetic() 공개 메소드

public Arithmetic ( double F ) : double
F double
리턴 double
예제 #1
0
 MyHome mh = new MyHome(); // shows how to instantiate a non static class and use it
 public double DoWork(double G)
 {
     return mh.Arithmetic(G); // I precede the method name with the Instance name.
 }