c# decimal.toString() conversion problem
decimal.toString()
Example: I have a value in decimal(.1) when I convert decimal to string using toString() it return
you have to define the format, it will depend in your local setting or define the format, using something like this
decimal.ToString(System.Globalization.CultureInfo.CreateSpecificCulture("en-us"));
cheers