MyHome.Arithmetic C# (CSharp) Method

Arithmetic() public method

public Arithmetic ( double F ) : double
F double
return double
        public double Arithmetic(double F)
        {
            return MyUniverse.Add() - MyWorld.Subtract(F); // will trivially equal F
        }
    }

Usage Example

 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.
 }