I'm sure this is an FAQ, but the first 12 items Google returned do not have this question in it.
I have a SortedDictionary(of String, String)
where the first item is an apartment number and the second a tenant name. I populare, then loop over the results and print, and I get something like...
A-10 Bob Smith
A-12 John Taylor
A-1 Alice Monroe
A-2 Janice O'Dell
I am at a complete loss as to what this sorting is trying to do, but in any event, I need this list to be A-1, A-2, A-10, A-12 (etc.)
We are forbidden from using LINQ (above my pay grade), so is there some easy way to change the sorting to be as expected?