I want to convert an int to a string with base36 (0-9 and a-z).
How is this done in .NET?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The only thing close is Convert.ToString(), which only allows conversions to base 2, 8, 10, and 16. You will have to roll your own conversion, or use this sample on CodeProject.