Is there any standard C# type or library for exact rational arithmetic, like division?
Decimal isn't what I need:
1m/3m + 1m/3m + 1m/3m != 1
I am thinking about something which stores two decimals, numerator and denominator, and performs multiplications and divisions exactly. Which can simplify fractions when needed and do explicit conversion to double or decimal.