Number Converter
- OwnZ joO
- Posts: 1197
- Joined: Sun Dec 09, 2007 4:46 pm
Number Converter
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.
- Attachments
-
- RadixConverter.rar
- (9.2 KiB) Downloaded 526 times
-
- Posts: 72
- Joined: Sat Jan 19, 2008 1:32 am
- Location: On a Grav Lift
- Contact:
Re: Number Converter
Why wouldent I use the "X" way? I wouldent know but this is worth looking at.
99% Of the Xbox Scene are retards.
Xbox Scene wrote:All Hail Jester!
- OwnZ joO
- Posts: 1197
- Joined: Sun Dec 09, 2007 4:46 pm
Re: Number Converter
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.