Info
Version: | 0.3.2 |
Author(s): | Jackson Warburton |
Last Update: | Friday, November 20, 2020 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/Jackwar/String-Math-Calculator |
NuGet Url: | https://www.nuget.org/packages/StringMathCalculator |
Install
Install-Package StringMathCalculator
dotnet add package StringMathCalculator
paket add StringMathCalculator
StringMathCalculator Download (Unzip the "nupkg" after downloading)
Supports the basic operators, *, /, + and -. Also supports parentheses, roots, exponents and logarithms.
The operations are calculated left to right by PEMDAS order.
Exp:
using StringMathCalculator;
Calculator calculator = new Calculator();
Console.WriteLine(calculator.Calculation("3 + 7 / 6 - (6 * 4)").Calculate());.