mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Make call to Keys automatically do .ToList()
This commit is contained in:
@@ -134,7 +134,7 @@ namespace SabreTools.Library.DatFiles
|
||||
StreamWriter sw = new StreamWriter(fs, new UTF8Encoding(true));
|
||||
|
||||
// Get a properly sorted set of keys
|
||||
List<string> keys = Keys.ToList();
|
||||
List<string> keys = Keys;
|
||||
keys.Sort(new NaturalComparer());
|
||||
|
||||
foreach (string key in keys)
|
||||
|
||||
Reference in New Issue
Block a user