其他不可解析的字符位于字符串的末尾

时间:2014-05-03 06:04:10

标签: c# string type-conversion formatexception

我正在进行以下从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"

我不确定这是错的。

1 个答案:

答案 0 :(得分:2)

  

hexdigits:从0到f或0的十六进制数字序列   通过F.

最后不会解析你的X.