Is it possible to convert a string of text from a textbox into octal numbers? If so, how do I convert octal to text and text to octal?
Oh, now I understand how it works. I thought that hex and octal were two different things, but really it’s two different bases. Sorry for the second post.
You can use
Convert.ToInt32(String, Int32) Methodand pass 8 as base.The second parameter
fromBase