我正在做以下从字符串到整数的转换,
Convert.ToInt32("10D6DE", 16) -> works fine
but,
Convert.ToInt32("D0437X", 16) -> throws an format exception,
"Additional non parsable characters at the end of string"
我不确定出了什么问题。
我正在做以下从字符串到整数的转换,
Convert.ToInt32("10D6DE", 16) -> works fine
but,
Convert.ToInt32("D0437X", 16) -> throws an format exception,
"Additional non parsable characters at the end of string"
我不确定出了什么问题。