CSV like PDSF ready to test

This commit is contained in:
2025-01-13 12:16:09 -07:00
parent 5e1e8f2364
commit dd342eb236
36 changed files with 585 additions and 298 deletions

View File

@ -53,7 +53,7 @@ internal record Point
if (string.IsNullOrEmpty(lines[i]))
break;
segments = lines[i].Split(separator, StringSplitOptions.RemoveEmptyEntries);
collection = Complete.GetCollection(segments);
collection = Run.GetCollection(segments);
point = new(collection.Count < 1 ? string.Empty : collection[0],
collection.Count < 2 ? string.Empty : collection[1],
collection.Count < 3 ? string.Empty : collection[2],