(1) Converter decimal em binário
interno x = 10;
strings = Convert.ToString(x, 2);
(2) Converter decimal em octal
strings = Convert.ToString(x, 8);
(3) Converter decimal em hexadecimal
strings = Convert.ToString(x, 16);
(4) Conversão de binário para decimal
x = Convert.ToInt32(s1, 2);
(5) Converter octal em decimal
x = Convert.ToInt32(s1, 8);
(6) Converter hexadecimal em decimal
x = Convert.ToInt32(s1, 16);
-