What is the best way of converting a multi-digit number to a alphabet string in C#.
For example, if I have a number say,
int digits = 1234567890
I want this to be converted to a string which would be
string alpha = "ABCDEFGHIJ"
This means 1 represents A, 2 represents B and so on.