I have problem with my VPS. My PC running the same OS as on VPS!But my
{
string price = "0,09";
double coef = 1.15;
int price1 = Convert.ToInt32(Convert.ToDouble(price) * 100);
price1 = Convert.ToInt32(Convert.ToDouble(price1) / coef);
MessageBox.Show(price1.ToString());
}
Result on your VPS is 783, but it should be 8 .And all my frinds have the same result: 8.
Please explaing me how to solve it.

