On the msdn documentation of (CurrencyNegativePattern) I notice that each number represents a associated pattern string.
There's any way to get this associated pattern string passing the corresponding number?
e.g:
<someClass>.GetNegativeAssociatedPattern( 9 ) // returns "-$ n"
<someClass>.GetNegativeAssociatedPattern( 3 ) // returns "$n-"
Thanks.