You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find that if we do
var zero = decimal.FromString("0.00")
Then print zero/ assign it to string after conversion, Instead of printing 0.00, 0 is printed.
Similarly if we do
var seventy = decimal.FromString("0.70")
Then print zero/ assign it to string after conversion, Instead of printing 0.70, 0.7 is printed.
Is there a pre-existing solution for this? If not, can this be added as a feature?
The text was updated successfully, but these errors were encountered:
I find that if we do
var zero = decimal.FromString("0.00")
Then print zero/ assign it to string after conversion, Instead of printing 0.00, 0 is printed.
Similarly if we do
var seventy = decimal.FromString("0.70")
Then print zero/ assign it to string after conversion, Instead of printing 0.70, 0.7 is printed.
Is there a pre-existing solution for this? If not, can this be added as a feature?
The text was updated successfully, but these errors were encountered: