I am trying to format a string as a currency given the currency code and not the locale. That is, given USD and not en_US.
I have seen examples on how to format it using value.ToString(CultureInfo.CreateSpecificCulture("en-US"))
but something like this does not work
value.ToString(CultureInfo.CreateSpecificCulture("USD"))
Is there any way to format the string as such?