From acbd68eed55c1ee137a7161633baa6a2c8141f1e Mon Sep 17 00:00:00 2001 From: Lin Kayser Date: Mon, 7 Oct 2024 13:18:30 +0400 Subject: [PATCH] Update PicoGK_Csv.cs Changed syntax of array allocation to old-style syntax to not require latest C# version. --- PicoGK_Csv.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PicoGK_Csv.cs b/PicoGK_Csv.cs index ad7e6d3..c7c4d65 100644 --- a/PicoGK_Csv.cs +++ b/PicoGK_Csv.cs @@ -57,7 +57,7 @@ public class CsvTable : IDataTable { public CsvTable(IEnumerable? astrColumnIDs = null) { - m_oColumnIDs = new(astrColumnIDs ?? []); + m_oColumnIDs = new(astrColumnIDs ?? new List()); } public CsvTable( string strFilePath, string strDelimiters = ",")