The following code is working fine with right format:
decimal.Parse(value.ToString());
A value like 2.34 works.
But, if the value is something like .765, it errors out.
How do I allow decimal.Parse to accept input like .765 and return the right value?
I get no such error when parsing using:
I think your problem is happening somewhere else.