Исправлены ошибки

This commit is contained in:
Данила Мочалов 2022-11-08 14:56:42 +04:00
parent 630de13d2c
commit 7f15f74c84

View File

@ -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);
}