Mickey's Awesome Package is a simple C# library that provides basic mathematical operations. The current version is 0.1.0.
To install the package, you can use the following command in your project:
dotnet add package mickeys-awesome-package --version 0.1.0
To use the Calculator class and its Add method, include the namespace in your code:
using MickeysAwesomePackage;You can then create an instance of the Calculator class and call the Add method:
Calculator calculator = new Calculator();
int result = calculator.Add(5, 10);
Console.WriteLine(result); // Outputs: 15If you would like to contribute to this project, feel free to submit a pull request or open an issue.
This project is licensed under the MIT License.