System.Collections.Generic.IEnumerable<String> lines = File.ReadLines("K:\\file.txt");
The file contains the following data
1
2
3
99
32
HR210
Redmond City Room A
23
Telephone Conference
HR252
Each line has 1 entry which represents a room in a building.
How do I sort it numerically and alphabetically. So my results look like
1
2
3
23
32
99
HR210
HR252
Redmond City Room A
Telephone Conference
The alphabetical part comes after the numbers.