I want to convert an integer to 3 character ascii string. For example if integer is 123, the my ascii string will also be "123". If integer is 1, then my ascii will be "001". If integer is 45, then my ascii string will be "045". So far I've tried Convert.ToString but could not get the result. How?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
Answer for the new question: You're looking for Answer for the original question, returning strings like
Explanation:
|
|||||||||||
|
myString is "052" now. Hope it will help |
|||
|
|
|
It depends on if you actually want ASCII characters or if you want text. The below code will do both.
Realise that .Net doesn't use ASCII for text manipulation. You can save ASCII to a file, but if you're using |
|||
|
|
stringwould be far easier to use but is not one byte per character. – Hand-E-Food Jul 30 '12 at 5:41