我想用 C# 计算一些数学,但我有一个问题。我的数字都是用.
而不是写的,
。例如 0.1 而不是 0,1。
(2^8 - 1)* 0.1 - 99.9
因为它们都是字符串,所以我将它们转换为 int。
我的代码:
String factor = "0.1";
String offset = "99.9";
Int64 result = (Convert.ToInt64(Math.Pow(2, 8) - 1) * Convert.ToInt64(factor.ToString().Replace(".", ","))) + Convert.ToInt64(offset.ToString().Replace(".", ","));
我收到一个错误:“字符串格式不正确。”