[DatFile, DatItem] Add natural sorting, all code by motoschifo

This commit is contained in:
Matt Nadareski
2016-09-26 12:11:33 -07:00
parent 251f6aae7b
commit a3e32631fc
5 changed files with 191 additions and 8 deletions

View File

@@ -3030,7 +3030,7 @@ namespace SabreTools.Helper
// Get a properly sorted set of keys
List<string> keys = Files.Keys.ToList();
keys.Sort(Style.CompareNumeric);
keys.Sort(new NaturalComparer());
foreach (string key in keys)
{