We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99df767 commit acbd68eCopy full SHA for acbd68e
PicoGK_Csv.cs
@@ -57,7 +57,7 @@ public class CsvTable : IDataTable
57
{
58
public CsvTable(IEnumerable<string>? astrColumnIDs = null)
59
60
- m_oColumnIDs = new(astrColumnIDs ?? []);
+ m_oColumnIDs = new(astrColumnIDs ?? new List<string>());
61
}
62
public CsvTable( string strFilePath,
63
string strDelimiters = ",")
0 commit comments