NugetPacketPractise
Instantiate the 'Arithmetic' class to access the following mathematical operations
- Addition
- Subtraction
- Multiplication
- Division
- Factoral
- Power
Overloads will inform what data types are used for each method.
var math = new Arithmetic();
var sum = math.Addition(2,5);
var factoral = math.Factoral(5);