- Factorial (returns double)
- Prime Checker (returns bool)
- Even Number Check (returns bool)
- Divisibility Checker (returns bool)
- Power Function (returns double)
- Digit Count (returns int)
- Degrees to Radians Converter (returns double)
- Degrees Sine Function (returns double)
- Degrees Cosine Function (returns double)
using MathsUtil;
MathsUtil.Factorial(5);
MathsUtil.IsPrime(7);
MathsUtil.IsEven(10);
MathsUtil.IsDivisible(15,3);
MathsUtil.Power(2, 4);
MathsUtil.DigitCount(12345);
MathsUtil.DegsToRads(360);
MathsUtil.DegSin(90);
MathsUtil.DegCos(180);
Add a reference for the dll file, "MathsUtil.dll". Right-click on the project and then click on "Add reference"
Select the DLL file and add it to the project
Add the namespace ("using MathsUtil;")
This project IS and will remain 100% Ai free