I have a C# method and which accepts three string parameters. After converting them to decimal, I am trying to perform a simple math calculation. I don't understand, why isn't the result correct?
string x = "1186197.2900000000000000";
string y = "226318.150000000000000000";
string z = "1260711.190000000000000000";
decimal d = MyFunction(x, y, z);
public decimal MyFunction(string x, string y, string z)
{
decimal dx = 0;
decimal dy = 0;
decimal dz = 0;
Decimal.TryParse(x, out dx);
Decimal.TryParse(y, out dy);
Decimal.TryParse(z, out dz);
decimal result = dx - dz + dy;
return result;//151804.25M
}
Thanks in advance.

[unknownValue1] - [unknownValue2] + [unknownValue3] = [unknownValue4]wrong?" – Dan Sep 25 at 13:29