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"
何が悪いのかわかりません。
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"
何が悪いのかわかりません。