Convert.ToString() only allows base values of 2, 8, 10, and 16 for some odd reason; is there some obscure way of providing any base between 2 and 16?
|
|
http://msdn.microsoft.com/en-us/library/14kwkz77.aspx EDIT: My bad, this will throw an argument exception unless you pass in the specified bases (2, 8, 10, and 16) Your probably SOL if you want to use a different base (but why???). |
||||||
|
|
|
You could give http://www.codeproject.com/KB/macros/Convert.aspx a try. |
||
|
|
|
|
You could try the following: http://www.dotnetspider.com/resources/938-Conversion-Decimal-number-any-Base-vice.aspx This at least gives the impression that you could have any base (from 2->16). Although Im a little confused as to why you would want to ! |
||
|
|
|
|
They probably did it to support negative numbers, since 2's compliment doesn't make sense in base 3. Also to eliminate someone typing a 7 instead of an 8, since the uses for arbitrary bases are few (But not non-existent). Here is an example method that can do arbitrary base conversions. You can use it if you like, no restrictions.
Untested, but you should be able to figure it out from here. |
|||
|
|
|
|
|
|||
|
|
|
|
Sorry, I'm not answering your question but... The choice of bases is not arbitary. You pc is constantly converting from base 2 (it's internal binary system) to the human readable base 10. Base 8 and 16 are very easy to convert to and from base 2 and are often used so a computer AND a human can read the value (e.g. GUIDs) |
||
|
|
