Ejemplo n.º 1
0
        public string ConverterParaBinario(string valor)
        {
            try
            {
                if (!System.Text.RegularExpressions.Regex.IsMatch(valor, "^[0-7]+$"))
                {
                    throw new FormatException();
                }

                string binario = "";

                CalculosDecimal calc = new CalculosDecimal();

                foreach (char valorOcta in valor)
                {
                    char letra = valorOcta;

                    int resto = 0;

                    resto = (int)Char.GetNumericValue(letra);

                    string bin = calc.ConverterParaBinario("" + resto);

                    if (Convert.ToInt32(bin) < 10)
                    {
                        bin = "00" + bin;
                    }
                    else if (Convert.ToInt32(bin) < 100)
                    {
                        bin = "0" + bin;
                    }

                    binario = binario + bin;
                }

                return("" + binario);
            }
            catch (FormatException e)
            {
                return("Valor Invalido");
            }
        }
Ejemplo n.º 2
0
        public string ConverterParaHexadecimal(string valor)
        {
            try
            {
                if (!System.Text.RegularExpressions.Regex.IsMatch(valor, "^[0-7]+$"))
                {
                    throw new FormatException();
                }

                CalculosDecimal calcDecimal = new CalculosDecimal();

                string valorDecimal     = ConverterParaDecimal(valor);
                string valorHexadecimal = calcDecimal.ConverterParaHexadecimal(valorDecimal);

                return("" + valorHexadecimal);
            }
            catch (FormatException e)
            {
                return("Valor Invalido");
            }
        }
Ejemplo n.º 3
0
        public string ConverterParaOctal(string valor)
        {
            try
            {
                if (!System.Text.RegularExpressions.Regex.IsMatch(valor, @"\A\b[0-9a-fA-F]+\b\Z"))
                {
                    throw new FormatException();
                }

                string decimais = ConverterParaDecimal(valor);

                CalculosDecimal calc = new CalculosDecimal();

                string octa = calc.ConverterParaOctal(decimais);

                return(octa);
            }
            catch (FormatException e)
            {
                return("Valor Invalido");
            }
        }