string s1="1A" 怎样转化为 int s1=26 ? 问题点数:20、回复次数:2Top
int.parse(s1);Top
int s1 = int.Parse("1a", System.Globalization.NumberStyles.HexNumber);Top