MathematicalFormulas 1.0.0
dotnet add package MathematicalFormulas --version 1.0.0
NuGet\Install-Package MathematicalFormulas -Version 1.0.0
<PackageReference Include="MathematicalFormulas" Version="1.0.0" />
paket add MathematicalFormulas --version 1.0.0
#r "nuget: MathematicalFormulas, 1.0.0"
// Install MathematicalFormulas as a Cake Addin #addin nuget:?package=MathematicalFormulas&version=1.0.0 // Install MathematicalFormulas as a Cake Tool #tool nuget:?package=MathematicalFormulas&version=1.0.0
About MathematicalFormulas Package
MathematicalFormulas package helps .Net Developers to carry out complex mathematical calculations within their project by simply utilizing mathematical formulas/methods such as Simple Interest, Compound Interest, Volume of Trapezium, Volume of Cuboid, Volume of a Cone etc.
Authors
👤 Bello Soliu
Package Version
version 1.0.0
Target Languages:
C#, F# and Visual Basic
Getting Started
To install our package using the .NET CLI, run the following code:
dotnet add package MathematicalFormulas --version 1.0.0
Installation using Visual Studio
- Right-click on Project dependencies
- Select Nuget Packages Manager
- Then click on Browse to search for MathematicalFormulas
- Then finally click on install.
Prerequisites
An Basic understanding of C#, NuGet Packages and Visual Studio.
Usage
After Installation, to use the package, simply call the name of the package and then create an object instance of the class Formulas to access the formula methods as shown below:
using MathematicalFormulas;
namespace TestingPackage
{
internal class Program
{
static void Main(string[] args)
{
double result = Formulas.SimpleInterest(2500, 2.5, 3);
//some code here...
}
}
}
- To use some mathematical formulas within the package, for example, to calculate Simple Interest, pass the variables values such as Principal Amount, Rate and Time with values of 2800, 2.3 and 2 respectively. For easy identification of variables to pass, hover on the method called on visual studio to get the variable names and data type. Check the code below:
using MathematicalFormulas;
namespace TestingPackage
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Calculating Simple Interest");
double result = Formulas.SimpleInterest(2800, 2.3, 2);
Console.WriteLine($"Simple Interest Result is: {result}");
}
}
}
🤝 Contributing
- Contributions, issues, and more feature requests are welcome. Get in touch.
Github Link:
Contact:
LinkedIn - Click here
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 240 | 1/16/2023 |