我正在进行以下从string到int的转换,
Convert.ToInt32("10D6DE", 16) -> works fine
but,
Convert.ToInt32("D0437X", 16) -> throws an format exception,
"Additional non parsable characters at the end of string"
我不确定这是错的。
答案 0 :(得分:2)
hexdigits:从0到f或0的十六进制数字序列 通过F.
最后不会解析你的X.