(1) 十進制轉換為二進位
int x = 10;
string s = Convert.ToString(x, 2);
(2) 十進制轉換為八進制
string s = Convert.ToString(x, 8);
(3) 十進制轉換為十六進制
string s = Convert.ToString(x, 16);
(4) 二進制轉換為十進制
x = Convert.ToInt32(s1, 2);
(5) 八進制轉換為十進制
x = Convert.ToInt32(s1, 8);
(6) 十六進制轉換為十進制
x = Convert.ToInt32(s1, 16);
-