2013/03/03

C#.Net 十六進位轉整數


string hex="48"
int value = Convert.ToInt32(hex, 16);
Console.WriteLine(value);


資料參考:
http://msdn.microsoft.com/zh-tw/library/bb311038.aspx