日期:2014-05-18 浏览次数:21001 次
int x;
if (int.TryParse(arr[9], System.Globalization.NumberStyles.AllowHexSpecifier, null, out x))
{
//可以正常转换
}
else
{
//不可以正常转换
}