Page 1 of 1

Number Converter

Posted: Fri May 09, 2008 7:37 pm
by OwnZ joO
I wrote a program in my computers class to convert numbers to binary and realized it could be used for any base so I decided to change it to be able to convert base 10 numbers to binary, oct, and hex also. So here's the source in case anybody is interested in it. By the way this doesn't use the ToString("X") method, so if you want to see how to convert to hex without that this will show you.

Re: Number Converter

Posted: Mon May 12, 2008 1:25 am
by KIWIDOGGIE
Why wouldent I use the "X" way? I wouldent know but this is worth looking at.

Re: Number Converter

Posted: Mon May 12, 2008 2:52 am
by OwnZ joO
Because I had to make an app to convert numbers to binary for computers. I saw how easy it was to do for hex so I just made an app showing how to do it.