This package was built to help C# developers do basic figure number to word conversion with ease and not having to do alot of work .
- Languages: C#
- Frameworks: .NET Standard 2.0
- Technologies: Github and Visual Studio
- To install our package using the .NET CLI, run:
dotnet add package numberToWordConverter-m88 --version 1.0.1
- Installation using Visual Studio
- Right-click on project dependencies
- Select manage Nuget packages
- Search
numberToWordConverter-m88
- Click install
- After installing, add to your project dependencies
- Import the namespace 'using numberToWordConverter'
- It has a single 'Converter' class and a static 'NumberToWords' method
- The 'NumberToWords' takes in an integer and returns a string
- An understanding of C# and NuGet Packages
- A Code Editor
using numberToWordConverter;
namespace ConsoleApp
{
internal class Program
{
static void Main(string[] args)
{
int number = Convert.ToInt32(IntegerToConvert);
string output = Converter.NumberToWords(number);
Console.WriteLine(output);
}
}
}
👤 Henry Ugochukwu
- GitHub: @Henrymenez
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.
Give a ⭐️ if you like this project!