I have no idea why this is not working:
string s = \"12,00 €\"; var germanCulture = CultureInfo.CreateSpecificCulture(\"de-DE\"); decimal d; if (decimal.TryP
Try this;
string.Format(new CultureInfo("en-SG", false), "{0:c0}", 123423.083234);
It will convert 123423.083234 to $1,23,423 format.