將字符串轉換成數字
方法:Convert.ToInt32(string value,int fromBase)
fromBase爲進制(2,8,10,16)
如:將16進制(string)轉換成10進制(int)spa
string strBase16="fe12"; int intBase10=Convert.ToInt32(strBase16,16);//(第一個參數爲要轉換的數值,第二個參數爲待轉換數值的進制)
結果:65042code
補充:Convert.ToInt1六、Convert.ToInt3二、Convert.ToInt64blog
Int16 = short, 佔2個字節. -32768 ~ 32767字符串
Int32 = int, 佔4個字節. -2147483648 ~ 2147483647string
Int64 = long, 佔8個字節. -9223372036854775808 ~ 9223372036854775807class