Skip to content

Commit

Permalink
Update PicoGK_Csv.cs
Browse files Browse the repository at this point in the history
Changed syntax of array allocation to old-style syntax to not require latest C# version.
  • Loading branch information
LinKayser committed Oct 7, 2024
1 parent 99df767 commit acbd68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PicoGK_Csv.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class CsvTable : IDataTable
{
public CsvTable(IEnumerable<string>? astrColumnIDs = null)
{
m_oColumnIDs = new(astrColumnIDs ?? []);
m_oColumnIDs = new(astrColumnIDs ?? new List<string>());
}
public CsvTable( string strFilePath,
string strDelimiters = ",")
Expand Down

0 comments on commit acbd68e

Please sign in to comment.