Skip to content

dgg/nmoneys

Repository files navigation

logo

Implementation of the Money Value Object to support representing moneys in the currencies defined in the ISO 4217 standard

GitHub tag NMoneys) Build status Coverage Status codecov

Nuget NMoneys

What

NMoneys (plural) is a simple .Net library to represent monetary quantities.

What does NMoneys provide?

  • types for representing currencies that conform to the ISO 4217 standard and quantities of money in a given currency.
  • simple but extensible operations with monetary quantities of the same currency, including allocations of several sorts.
  • ways of formatting the representation of monetary quantities
  • a simple way of contributing to improve the completeness and correctness of the library

What not

NMoneys does not provide any support for exchanging monetary quantities in different currencies. That means that you could not "convert", for example, 10 Euro into the equivalent quantity in dollars using an internal exchange rate in the library. Instead, you could, for example, perform the conversion with numeric types and then display the resultant quantity in a meaningful way by using types provided by NMoneys.

If you need to convert monetary quantities into other currencies you can use the (from now an on) archived library NMoneys.Exchange alongside your trusted currency rates feed.

NMoneys does not provide, as of now, complex monetary or financial operations

What might

The aim of NMoneys is being simple and to-the-point: represent monetary quantities.

But, one of the reasons of making it Open-Source is that people with knowledge in the areas related with the subject of the library, that is money, can contribute with correct and useful ways to operate with the concepts in the library without cluttering its original purpose.

Quickstart

Install Nuget package.

dotnet add package NMoneys

Instantiate monetary quantities:

var threeDollars = new Money(3m, Currency.Usd);
var twoandAHalfPounds = new Money(2.5m, CurrencyIsoCode.GBP);
var tenEuro = new Money(10m, "EUR");

Obtain currencies or symbols:

Currency cad = Currency.Get(CurrencyIsoCode.CAD);
Currency australianDollar = Currency.Get("AUD");
Currency euro = Currency.Get(CultureInfo.GetCultureInfo("es-ES"));

string isoSymbol;
bool wasFound = Currency.TryGet(isoSymbol, out Currency? itMightNotBe);

Currency.Code.TryCast(36, out CurrencyIsoCode? maybeAud);
Currency.Code.TryParse("036", out CurrencyIsoCode? possiblyAud);

Operate with monetary quantities:

int isPositive = new Money(3m, Currency.Nok).CompareTo(new Money(2m, CurrencyIsoCode.NOK));

var three = new Money(3m);
var two = new Money(2m);
Money five = three.Plus(two);
Money oneOwed = two - three;
Money one = oneOwed.Abs();

10m.Eur().ToString(); // default formatting "10,00 €"
new Money(1500, Currency.Eur).Format("{1} {0:#,#.00}"); // rich formatting "€ 1.500,00"

Allocation fair = 40m.Eur().Allocate(4);
// fair.IsComplete --> true
// fair.Remainder --> 0€
// fair --> < 10€, 10€, 10€ >

Money moneyBack = 1m.Usd().Minus(.37m.Usd()); // ¢63
Denomination[] usCoins = 
{
	new Denomination(.25m), // quarters
	new Denomination(.10m), // dimes
	new Denomination(.05m), // nickels
	new Denomination(.01m)  // pennies
};
ChangeSolution change = moneyBack.MakeChange(usCoins);
// --> six coins (optimal): 2 quarters, 1 dime, 3 pennies

A more complete quick-start can be found here.

Why

The .NET Framework

.Net does not provide a good way of representing and operating with monetary quantities. Nonetheless, it does support numeric types that can be used to represent monetary quantities and it also provides support for formatting those numeric values in different cultures. But it is surprisingly easy to mix the concept of "10 represented euros when was saved" with "now, 10 represents something else because of the current culture of the thread".

The .Net Framework mixes numbers, currencies, cultures and formats in a way that it becomes confusing, difficult and/or impossible to represent something as simple as "one Euro" or "ten-and-the-half Zambian kwacha".

On top of that mixture of concepts, it does not support a complete implementation for the ISO standard and for the subset implemented, the information may be outdated or even wrong. Fixes might be issued for wrong/outdated data, but they may take too long to be rolled-out and to add further confusion currency formatting information can be modified by the user.

Other libraries

There might be others libraries or simple code snippets that might cover a necessity. But they did not cover mine for one or another reason: different goals, lack of activity/outdated, not suitable API,...

Open source

I have been using different incarnations of this library in commercial projects for some time now. It started with a limited set of well-known currencies. Then it grew to include some others until I decided to support all ISO currencies. At that point I realised that there was no way I could support correctly all scenarios for multiple reasons:

  • lack of cultural knowledge (e.g. how does one represent decimals in Swaziland?)
  • lack of technical knowledge (e.g how does one distribute an amount of money amongst a number of parties?)

With the realisation came the proposal to my employer to Open-Source the library and modify it so that is easy enough for people to help out, even if they are not .Net programmers.

And here we are.