Arithmetic() public method

public Arithmetic ( double F ) : double
F double
return double
Exemplo n.º 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.
 }