I have a List<int>
that contains incremental integers like 1,2,3,4 .
How can I convert the 'list' . I'm looking for an algorithm or code to change numbers to 'corresponding' letters.
List<string>
From: 1, 2, 3, 4, 5
To : A, B, C, D, E.... AA, AB etc.
Change the increments from 1,2,3 to A, B, C