Skip to content

Instantly share code, notes, and snippets.

View NoelKennedy's full-sized avatar

Noel Kennedy NoelKennedy

View GitHub Profile
@NoelKennedy
NoelKennedy / tax.cs
Created September 22, 2011 16:37 — forked from flq/tax.cs
the tax thingy
public static decimal GetTaxes(decimal salary)
{
var taxBands = new[]
{
new Tuple<Decimal, Decimal, Decimal>(0, 5070, 0.1m),
new Tuple<Decimal, Decimal, Decimal>(5070, 8660, 0.14m),
new Tuple<Decimal, Decimal, Decimal>(8660, 14070, 0.23m),
new Tuple<Decimal, Decimal, Decimal>(14070, 21240, 0.3m),
new Tuple<Decimal, Decimal, Decimal>(21240, 40230, 0.33m),
new Tuple<Decimal, Decimal, Decimal>(40230, Decimal.MaxValue, 0.45m)