将值“01200000131”传递给此方法:
private static int sumOddVals(string barcode)
{
int cumulativeVal = 0;
for (int i = 0; i < barcode.Length; i++)
{
if (i % 2 != 0)
{
MessageBox.Show(string.Format("i is {0}; barcode{0} is {1}", i, barcode[i]));
cumulativeVal += Convert.ToInt16(barcode[i]);
}
}
MessageBox.Show(string.Format("Odd total is {0}", cumulativeVal));
return cumulativeVal;
}
...返回“244”
我期待它返回“4”。
第一个消息框显示了我希望看到的内容,即“1”,然后是“0”三次,然后是“3”,我希望加起来是“4”,而不是“244”。