コード例 #1
0
ファイル: Program.cs プロジェクト: harrybe/Numral-Converter
        public char[] othConvert()
        {
            this.enterOctal();

            Binary converter = new Binary(this.oChain);

            converter.otbConvert();
            this.hChain = converter.bthConvert();

            this.hChain[8] = '\0';

            return this.hChain;
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: harrybe/Numral-Converter
        public int otdConvert()
        {
            this.enterOctal();

            Binary converter = new Binary(this.oChain);

            converter.otbConvert();
            this.dNumber = converter.btdConvert();

            return this.dNumber;
        }