diff --git a/Locomotive/Locomotive/MapWithSetLocomotivesGeneric.cs b/Locomotive/Locomotive/MapWithSetLocomotivesGeneric.cs index fc6ecfa..f132ff7 100644 --- a/Locomotive/Locomotive/MapWithSetLocomotivesGeneric.cs +++ b/Locomotive/Locomotive/MapWithSetLocomotivesGeneric.cs @@ -172,7 +172,7 @@ namespace Locomotive /// Загрузка списка из массива строк public void LoadData(string[] records) { - foreach (var rec in records) + foreach (var rec in records.Reverse()) { _setLocomotives.Insert(DrawningObjectLocomotive.Create(rec) as T); }