¡@

Home 

c# Programming Glossary: inttostring

Compressing big number (or string) to small value

http://stackoverflow.com/questions/1355100/compressing-big-number-or-string-to-small-value

EDIT In the linked SO post look at this part string xx IntToString 42 new char '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 'A' 'B'..

How do I convert an Int to a String in C# without using ToString()?

http://stackoverflow.com/questions/17575375/how-do-i-convert-an-int-to-a-string-in-c-sharp-without-using-tostring

improve this question Something like this public string IntToString int a var chars new 0 1 2 3 4 5 6 7 8 9 var str string.Empty.. bases. It could probably be improved further public string IntToString int a int radix var chars 0123456789ABCDEF .ToCharArray var..

Quickest way to convert a base 10 number to any base in .NET?

http://stackoverflow.com/questions/923771/quickest-way-to-convert-a-base-10-number-to-any-base-in-net

void Main string args convert to binary string binary IntToString 42 new char '0' '1' convert to hexadecimal string hex IntToString.. 42 new char '0' '1' convert to hexadecimal string hex IntToString 42 new char '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 'A' 'B'.. 'A' 'B' 'C' 'D' 'E' 'F' convert to sexagesimal string xx IntToString 42 new char '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 'A' 'B'..