vote up 7 vote down star

Is it possible to use system.currency. It says system.currency is inaccessible due to its protection level. what is the alternative of currency.

flag

51% accept rate
Retagged for you – Vincent Sep 30 '08 at 0:32

4 Answers

vote up 10 vote down check

You have to use Decimal data type..

The decimal keyword indicates a 128-bit data type. Compared to floating-point types, the decimal type has more precision and a smaller range, which makes it appropriate for financial and monetary calculations.

link|flag
You know, it's not "more precision" that is important, it's the type of precision. Decimal is based on a 10-base scale and will always exactly represent a decimal number within it's range. Floats types however are based on a binary scale and may be describing a fraction that is not part of base 10 – nedruod Sep 30 '08 at 0:53
vote up 2 vote down

You can't actually use Decimal for Currency. You'll face bigger problems later on when you divide. Say if you have $1 split into 3 which is 1/3 = 0.33(rounded), but 3 x 0.33 = 0.99 != 1. It might be small, but when you do that in accounting ans stack up your sheets, it will be a huge figure. Also that's why the default rounding up/down behavior in .Net (not sure about other programming languages) is to the next even value, also called bankers' rounding, to minimized error in accounting comparing to our normal "human" way of rounding.

Read this page for clearer explanation and a special class to handle money. Code Project : A Money type for the CLR

Also about Rounding

link|flag
vote up 7 vote down

Use Decimal. All of the functions that Currency provides are static methods on Decimal, FromOACurrency, and ToOACurrency.

link|flag
vote up 2 vote down

It may be possible via reflection but the reasons that it's there are for FromOACurrency() and ToOACurrency() static methods on System.Decimal, which is for convering from/to the Ole Automation Currency type that Visual Basic 6 uses.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.